The Where Clause is used to fetch specific filtered record.
Syntax:
1 2 3 |
SELECT column1, column2, ... FROM table_name WHERE condition; |
Example:
1 |
select * from cars where model = 'Honda' |
Output:

The Where Clause is used to fetch specific filtered record.
Syntax:
1 2 3 |
SELECT column1, column2, ... FROM table_name WHERE condition; |
Example:
1 |
select * from cars where model = 'Honda' |
Output: