BETWEEN ... AND ... : Between two values (inclusive) ex) BETWEEN lower_value AND higher_value IN (set) Match any of a list of values The IN condition can be used with any data type. If characters or dates are used in the list, they must be enclosed by single quotation marks.('') SELECT employee_id, last_name, salary, manager_id FROM employees WHERE manager_id IN (100,101,201);LIKE : Match a char..