Multiple choice technology mainframe

Which sign is used to indicate any string of zero or more characters.

  1. _

  2. %

  3. *

  4. None of the above

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

In SQL LIKE predicates, the percent sign (%) wildcard matches any string of zero or more characters. The underscore (_) wildcard matches exactly one character, while the asterisk (*) is not standard for LIKE pattern matching in SQL.