KnowledgeBoat Logo

Computer Science

The …………… clause of SELECT query allows us to select only those rows in the result that satisfy a specified condition.

  1. Where
  2. from
  3. having
  4. like

SQL Queries

3 Likes

Answer

Where

Reason — The WHERE clause in SELECT statement specifies the criteria for selection of rows to be returned. When a WHERE clause is present, the database program goes through the entire table one row at a time and examines each row to determine if the given condition is true. If it is true for a row, that row is displayed in the output.

Answered By

1 Like


Related Questions