/* Using where with with an IN (values) list */

SELECT  *
FROM student
where student_id IN (1,2,3);

SELECT  *  
FROM  address
WHERE  state  IN ('NY', 'NJ', 'CT', 'FL');