InterviewSolution
| 1. |
Explain AND operator using where in SQL. |
|
Answer» The operator AND means that the expressions on both sides must be true to return TRUE. If either expression is false AND returns FALSE. Example 1: CUSTOMERS WHERE SALARY > 2000 AND age < 25; Example 2: |
|