Which SQL clause is used to filter records in a SELECT statement?

  • FILTER
  • GROUP BY
  • HAVING
  • WHERE
The SQL clause used to filter records in a SELECT statement is the WHERE clause. It allows you to specify conditions that the rows must meet to be included in the result set. This is essential for retrieving specific data based on criteria such as values in certain columns or combinations of conditions.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *