Informatics Practices

The purpose of WHERE clause in a SQL statement is to:

  1. Create a table
  2. Filter rows based on a specific condition
  3. Specify the columns to be displayed
  4. Sort the result based on a column

SQL Queries

1 Like

Answer

Filter rows based on a specific condition

Reason — The purpose of the WHERE clause in a SQL statement is to select only those rows that meet a specific condition.

Answered By

3 Likes


Related Questions