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