Multiple choice technology databases

What are the different tags which can be used with 'LIKE'

  1. *

  2. ?

  3. _ (underscore)

  4. %

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

SQL LIKE uses % for multi-character wildcards and _ for single-character wildcards. Some databases (like Access) also support ? as a single-character wildcard. The asterisk (*) is not standard SQL LIKE syntax.