AdBlock Detected!
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.
SQL AND OR |
SQL > SQL Commands >
And Or
The keywords AND and OR are Boolean operators used to specify compound conditions in the WHERE clause. SyntaxThe syntax for using AND and OR in a compound condition is as follows: SELECT "column_name"
FROM "table_name" WHERE "simple condition" { [AND|OR] "simple condition"}+; The { }+ means that the expression inside the bracket will occur one or more times. [AND|OR] means that either AND or OR can be used. In addition, we can use the parenthesis sign ( ) to indicate the order of the condition. The condition within the parenthesis sign gets executed first. ExampleWe use the following table as our example: Table Store_Information
If we want to select all stores with sales greater than $1,000 or all stores with sales less than $500 but greater than $275 in Table Store_Information, we key in, SELECT Store_Name
FROM Store_Information WHERE Sales > 1000 OR (Sales < 500 AND Sales > 275); Result:
ExercisesFor these exercises, assume we have a table called Users with the following data: Table Users
1. Which of the following SQL statement is valid? (There can be more than one answer)
2. How many records will be returned by the following query?
3. How many records will be returned by the following query?
|
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.