In SQL, what is the purpose of the WHERE clause in a SELECT statement?

  • Groups the rows
  • Limits the rows returned
  • Orders the result set
  • Specifies the columns
The WHERE clause filters rows in a SELECT statement based on a specified condition. It is used to extract only the rows that fulfill a specified condition or criteria from a table. 
Add your answer
Loading...

Leave a comment

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