Display all fields for those whose finish is red and price is greater than
400 or those whose finish is cherry and price is less than 400.
WHERE finish='red' AND price>400 OR
finish='cherry' AND PRICE<400;
Display prod id and description of those whose finish is either red or
cherry and whose price is between 400 and 500 inclusive
SELECT prod id, description
WHERE (finish='red' OR finish='cherry') AND price>=400 AND price<=500