Which SQL clause is used to filter records based on a specified condition?

  • GROUP BY
  • ORDER BY
  • SELECT
  • WHERE
The WHERE clause is used in SQL to filter records based on specified conditions. It allows for conditional retrieval of data from a table, helping in narrowing down the results to meet specific criteria. Other clauses like ORDER BY and GROUP BY are used for sorting and grouping results, respectively.
Add your answer
Loading...

Leave a comment

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