The WHERE clause is used to add a condition to filter the records when we want to fetch the specific records instead of all records.
Syntax:
SELECT * FROM tableName WHERE [condition];
To specify a condition we can use any logical operator like >, <, =, LIKE, NOT etc.
Example:
SELECT * FROM EMPLOYEE WHERE EMP_ID = 1; |
Output:
EMP_ID EMP_NAME AGE SALARY 1 Parbhjot 28 35000 |
Next Topic: SQL AND Clause with example.
Previous Topic: SQL ALIAS Statement with example.