The _____ clause is used in SQL to filter records based on a specified condition.

  • WHERE
  • FROM
  • SELECT
  • GROUP BY
The correct answer is "WHERE." In SQL, the WHERE clause is used to filter records based on a specified condition. It allows you to retrieve only the rows that meet the specified criteria. For example, you can use the WHERE clause to filter records where a certain column equals a specific value or meets a particular condition. This clause is essential for querying data selectively from a database table.
Add your answer
Loading...

Leave a comment

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