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:

image_thumb[11]

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:

image_thumb[12]

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:

image_thumb[13]

Comments

Popular posts from this blog

XML Document Schema

Extended Relational-Algebra Operations.

Distributed Databases:Concurrency Control in Distributed Databases