Which SQL clause is used to filter the result set based on multiple conditions?

  • AND
  • HAVING
  • OR
  • WHERE
The SQL AND clause is used to filter the result set based on multiple conditions. It allows you to combine two or more conditions in a SQL statement, ensuring that records meet all specified criteria simultaneously. This is particularly useful when you need to retrieve data that satisfies multiple conditions simultaneously, narrowing down the result set to only the desired records.
Add your answer
Loading...

Leave a comment

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