SQL LEARNING PLATFORM
WHERE filters which rows come back. Without it, you get every row.
Learning Blocks
Interactive Queries
Concepts you'll master
Filtering rows with a single condition
All comparison operators: =, !=, >, <, >=, <=
Filtering numbers, text, and dates
🌟 Think of it this way: WHERE is the bouncer at the door. Only rows that satisfy the condition get through to your result. Everyone else it turned away.
SELECT name, department, salary FROM employees WHERE department = 'IT';
SELECT name, salary FROM employees WHERE salary > 70000;
Practice your SQL skills