Contents
- Index
Wildcards
The asterisk (*), question mark (?), and number sign (#) are wildcard characters. You can use these characters in database search criteria that begin with specific characters or match a certain pattern.
Symbol Example
* Matches any number of characters, and can be used anywhere in the character string. wh* finds what, white
? Matches any single character. b?ll finds ball, bell, and bill
# Matches any single digit. 1#3 finds 103, 113, 123