SQL AND & OR Operators

« Previous Chapter Next Chapter »

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:

P_Id LastName FirstName Address City
1 Karmen Kasa Los Angels - USA New Orleans
2 Jacob Mary Los Angels - USA New Orleans
3 Maxwell Glen Australia Sydney

Now we want to select only the persons with the first name equal to "Mary" AND the last name equal to "Jacob":

We use the following SELECT statement:

SELECT * FROM Persons
WHERE FirstName='Mary'
AND LastName='Jacob'

The result-set will look like this:

P_Id LastName FirstName Address City
2 Jacob Mary Los Angels - USA New Orleans


OR Operator Example

Now we want to select only the persons with the first name equal to "Mary" OR the first name equal to "Kasa":

We use the following SELECT statement:

SELECT * FROM Persons
WHERE FirstName='Mary'
OR FirstName='Kasa'

The result-set will look like this:

P_Id LastName FirstName Address City
1 Karmen Kasa Los Angels - USA New Orleans
2 Jacob Mary Los Angels - USA New Orleans


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 "Jacob" AND the first name equal to "Mary" OR to "Kasa":

We use the following SELECT statement:

SELECT * FROM Persons WHERE
LastName='Jacob'
AND (FirstName='Mary' OR FirstName='Kasa')

The result-set will look like this:

P_Id LastName FirstName Address City
2 Jacob Mary Los Angels - USA New Orleans

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!