Where clauses
A WHERE
clause allows you to add conditionals into your SQL statement that fetch data only if certain criteria is met.
Basic WHERE clause
When defining a where condition in a SQL statement it typically reads like:
Each condition typically follows the format of: column
operator
value
. We offer a number of Operators that help pre-compose the proper order and formatting to make it easier.
Multiple WHERE clauses
You can chain together multiple WHERE clauses to narrow down the rows that are returned.
Last updated