A logical operator returns the value True if the condition being evaluated is
met. Otherwise, the value returned is False.
AND: budget > 1000000 AND gross > 1000000
OR: budget > 1000000 OR gross > 1000000
BETWEEN... AND: title_year BETWEEN 2010 AND 2012 AS year_range
IN: title_year IN (2010, 2012, 2014) AS year_range,
IS NULL: gross IS NULL AS gross_is_null
The NOT operator is a negate operator. It reverts the meaning of the logical
operator with which it is being used.