Multiple choice technology databases

Choose true option

  1. BETWEEN -->>Used for range with in values

  2. LIKE -->>Used for Search a pattern

  3. IN -->>return east one of the columns in given set of values

  4. None

Reveal answer Fill a bubble to check yourself
A,B,C Correct answer
Explanation

BETWEEN filters rows within a range (inclusive). LIKE searches for patterns using wildcards (% and _). IN checks if a value equals at least one value in a set (not 'east' - likely a typo for 'at least' or 'exists'). D is false.