Which SQL clause is used to filter records based on more than one condition?

  • AND
  • FILTER
  • OR
  • WHERE
The OR operator in SQL is used to filter records based on more than one condition. It allows you to retrieve records that satisfy either of the specified conditions, providing flexibility in querying the database. The WHERE clause is used for a single condition, and AND combines conditions, but OR broadens the filter.
Add your answer
Loading...

Leave a comment

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