SQL Basic
SQL Advanced
SQL Functions
| SQL And & Or |
|
The AND & OR operators are used to filter records based on more than one condition. The AND & OR OperatorsThe AND operator displays a record if both the first condition and the second condition is true. The OR operator displays a record if either the first condition or the second condition is true. AND Operator ExampleThe "Persons" table:
Now we want to select only the persons with the first name equal to "Tove" AND the last name equal to "Svendson": We use the following SELECT statement:
The result-set will look like this:
OR Operator ExampleNow we want to select only the persons with the first name equal to "Tove" OR the first name equal to "Ola": We use the following SELECT statement:
The result-set will look like this:
Combining AND & ORYou can also combine AND and OR (use parenthesis to form complex expressions). Now we want to select only the persons with the last name equal to "Svendson" AND the first name equal to "Tove" OR to "Ola": We use the following SELECT statement:
The result-set will look like this:
|
SQL And & Or