Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

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;
 
PREVIOUS NEXT
Tagged: #sql #keyword
ADD COMMENT
Topic
Name
5+9 =