Monday 29 May 2017

DBMS AND & OR operator ~ GNIITHELP

AND & OR operator

AND and OR operators are used with Where clause to make more precise conditions for fetching data from database by combining more than one condition together.

AND operator

AND operator is used to set multiple conditions with Where clause.

Example of AND

Consider the following Emp table
eidnameagesalary
401Anu225000
402Shane298000
403Rohan3412000
404Scott4410000
405Tiger359000
SELECT * from Emp WHERE salary < 10000 AND age > 25 
The above query will return records where salary is less than 10000 and age greater than 25.
eidnameagesalary
402Shane298000
405Tiger359000

OR operator

OR operator is also used to combine multiple conditions with Where clause. The only difference between AND and OR is their behaviour. When we use AND to combine two or more than two conditions, records satisfying all the condition will be in the result. But in case of OR, atleast one condition from the conditions specified must be satisfied by any record to be in the result.

Example of OR

Consider the following Emp table
eidnameagesalary
401Anu225000
402Shane298000
403Rohan3412000
404Scott4410000
405Tiger359000
SELECT * from Emp WHERE salary > 10000 OR age > 25 
The above query will return records where either salary is greater than 10000 or age greater than 25.
402Shane298000
403Rohan3412000
404Scott4410000
405Tiger359000

No comments:

Post a Comment