What is the use of the WHERE clause in the SQL statement?
Answers
Answered by
1
Answer:
The SQL WHERE clause is used to specify a condition while fetching the data from a single table or by joining with multiple tables. If the given condition is satisfied, then only it returns a specific value from the table. You should use the WHERE clause to filter the records and fetching only the necessary records.
Similar questions