Multiple choice technology databases

The AND operator displays a record if both the first condition and the second condition is true. The OR operator displays a record if either the first condition or the second condition is true.

  1. True

  2. False

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

AND requires both conditions to be true for a record to be returned (intersection). OR returns records if either condition is true (union). This is the standard behavior of these logical operators in SQL WHERE clauses.