WHERE SELECT * FROM tblStudent WHERE studentGender = 'Female' AND studentLast IN ('Kim', 'Lee', 'Park') -- IN is a shorthand for multiple OR conditions. AND DATE(studentDOB) BETWEEN '1997-01-01' AND '1999-12-31' -- BETWEEN selects values within a given range. (inclusive) -- Values can be numbers, text, or dates. AND studentEmail LIKE '%@gmail.com' -- LIKE is used to search for a specified patter..