SQL TUTORIALS-
SQL AND Operator Statement
Introduction-
How to use AND operator in SQL with multiple conditions Explained with Examples
AND operator in SQL is used to combine two or more conditions in a WHERE clause. All conditions must be true for a row to be included in the result set...
✅ Example:- Select employees from IT department AND salary above 50000:
SELECT * FROM Employees
WHERE Department = 'IT' AND Salary > 10000;
✅Result Show :-
| ID | Name | Salary | City |
|---|---|---|---|
| 1 | ANNI | IT | 10000 |
| 5 | POOJA | IT | 90000 |