SQL TUTORIALS-
SQL AND Operator Statement
Introduction-
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 |