SQL AND & OR Operators
SQL AND & OR Operators
The AND & OR operators are used to filter records based on more than one condition.
The AND & OR Operators
The 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 Example
The "Persons" table:
OR Operator Example
Now we want to select only the persons with the first name equal to "Pranav" OR the first name equal to "Mounitha":
We use the following SELECT statement:
Combining AND & OR
You 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 "Kumar" AND the first name equal to "Pranav" OR to "Mounitha":
We use the following SELECT statement:
Comments
Post a Comment