| Context | Left | Key | Right | Source |
Notes:
1 Where to start a query
2Smart Searcht breaks the user's input into individual words and then matches those words in any position and in any order in the table (rather than simple doing a simple string compare)
3Regular Expressions can be used to initialize advanced searches. In the regular expression search you can enter regular expression with various wildcards such as:
- Start of the line ^
- Any character .
- Any character in the range between characters N and P [M-P]
- End of the line 33/li>
Also you can use operators:
- Character/strings that repeats 0 or more times - operator *
- Character/strings that repeats 1 or more times - operator +
- Character that may but does not need to appear in the sequence - operator ?