An expression can be any of the following:
The operators used within conditions include:
where (first_name = 'STEVEN' or last_name = 'YOUNG')
and create_date > '2006-01-01';
where not (first_name = 'STEVEN' or last_name = 'YOUNG')
and create_date > '2006-01-01';
where (first_name <> 'STEVEN' and last_name <> 'YOUNG')
and create_date > '2006-01-01';
DELETE FROM rental
WHERE year(rental_date) = 2004;