And Clause
Advertisements
And Clause
And clause are use to combined two or more than two condition together. In this case you need must be true both condition then return the result otherwise no return any result.
Suppose you want to get only those employee record who have more than 30000 salary and more than 5 year experience in that case you can combined these two condition by using and clause.
Syntax
SELECT columns FROM tables WHERE condition 1 AND condition 2;
Employee table
emp_id | name | salary | experience |
---|---|---|---|
101 | Amit | 24000 | 8 |
102 | Rahul | 34000 | 10 |
103 | Sultan | 54000 | 2 |
104 | Gaurav | 46000 | 6 |
105 | Hitesh | 35000 | 4 |
Example
SELECT * from Employee WHERE salary>30000 AND experience>5;
Result after using AND clause: Here ony show those employee detail who have more than 30000 salary and more than 5 years experience
emp_id | name | salary | experience |
---|---|---|---|
104 | Gaurav | 46000 | 6 |
102 | Rahul | 34000 | 10 |
Google Advertisment