1Filters results to only include data which meets the given condition.
2Example: Returns orders with a quantity of more than 1 item.
3SELECT * FROM orders
4WHERE quantity > 1;
1Where clause basically returns only
2true conditions
3
4Select First_Name
5From Customers
6Where ID = 1905Cimbom;