Question Details

Detailed explanation and options for the selected question.

Which SQL operator is used to search for a specified pattern in a column?

A. LIKE
B. IN
C. BETWEEN
D. EXISTS

Explanation:

LIKE is used for pattern matching in a column. IN checks for specific values, BETWEEN checks a range, and EXISTS checks for row existence.