


The WHERE clause helps you filter data in a table. Instead of getting everything, it shows only the rows that match a condition.
SELECT column1, column2
FROM table_name
WHERE condition;SELECT name
FROM students
WHERE age > 21;
Question number:
Contact
Donate
About
Privacy Policy
Changelog