Assume the table is "t" and field is "f" and of type VARCHAR
or TEXT
. The SQL queries listed below work with MS Access 97
. We are in the process of updating the database to SQLite3
(long overdue!), and these queries return no results.
Is this feature to match (or exclude) a range of characters available in SQLite?
For this you need the operator GLOB
which:
uses the Unix file globbing syntax for its wildcards
There is also the ?
wildcard which matches exactly 1 char.