Problem
How can I search for records in the database?
Step-by-step guide
To search for records in the database you can use the Wildcard Search Option.
You can use * to replace any string of characters and + to replace any single character.
Examples:
Example of usage | Result example |
*00 | 100, 1000, 100000, 200, 3000, 40000 |
AB+ | ABC, ABD, AB1, ABJ |
If you want entries to contain wildcards, insert the # symbol before the wildcards * and + to free them from their special function as wildcards.
Examples:
Example of usage | Result example |
A#+B | A+B |
A#*B | A*B |