You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
287 B
SQL

/*Display all in reverse, where order dates equal to a specified date or
customer id greater than a specified number and purchase amount less than a specified amount. */
SELECT *
FROM orders
WHERE NOT((ord_date ='2012-08-17'
OR customer_id>3005)
AND purch_amt<1000);