Multiple choice technology databases

Which is true for AND & OR

  1. These are Operators .Which are used to filter records based on more than one conditions.

  2. These Operators are used to join two tables.

  3. Never used in SQL

  4. None

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In SQL, AND and OR are logical operators used in the WHERE clause to filter records by combining multiple conditions. They do not join tables (which is done via JOIN operations) and are widely used in database querying, making the first option correct.