Complete the code to select rows where the condition is TRUE or UNKNOWN using OR.
SELECT * FROM employees WHERE active = TRUE [1] salary > 50000;
Using OR returns TRUE if either condition is TRUE or UNKNOWN (NULL treated as UNKNOWN).
Complete the code to find rows where NOT condition is TRUE.
SELECT * FROM orders WHERE NOT (shipped_date IS NULL) [1] status = 'pending';
Use AND to combine NOT condition with another condition that must also be TRUE.
Fix the error in the WHERE clause to correctly handle NULL with AND.
SELECT * FROM products WHERE price > 100 [1] discount IS NULL;
Use AND to ensure both conditions must be TRUE, including NULL check.
Fill both blanks to select rows where either condition is TRUE or the other is NOT TRUE.
SELECT * FROM sales WHERE region = 'East' [1] amount > 1000 [2] NOT (discount IS NULL);
Use OR to allow either condition, and AND to combine with NOT condition properly.
Fill all three blanks to create a condition that excludes NULLs and selects rows with amount > 500 or status 'active'.
SELECT * FROM transactions WHERE amount IS NOT [1] AND (amount [2] 500 [3] status = 'active');
Use IS NOT NULL to exclude NULLs, > to compare amount, and OR to allow status 'active'.