SELECT is the most written SQL statement in the world. WHERE is what gives it power — turning a query that returns millions of rows into one that returns exactly what you need. Master these two commands and you'll handle the majority of real-world SQL work.
1-A 2-A 3-C 4-A | 5 FROM 6 >= 7 = SELECT name FROM users WHERE age > 21; 8 = SELECT * FROM products WHERE price BETWEEN 10 AND 50; 9 = SELECT * FROM users WHERE email LIKE '%.edu'; | 10 = NULL is not comparable with =; use IS NULL