I have a DB with several fields
word_id — INTEGER PRIMARY_KEY
word — TEXT
...
..and ~150k rows.
Since this is a dictionary, I\'m searc
An index cannot safely be used in this case. A naive implementation would transform this:
... WHERE word LIKE 'search_string%'
into
... WHERE word >= 'search_string' AND word < 'search_strinh'
by incrementing the last character of the search string. The greater-than and less-than operators can use an index, where LIKE cannot.
Unfortunately, that won't work in the general case. The LIKE
operator is case-insensitive, which means that 'a' LIKE 'A'
is true. The above transformation would break any search string with capitalized letters.
In some cases, however, you know that case sensitivity is irrelevant for a particular column, and the above transformation is safe. In this case, you have two options.
NOCASE
collating sequence on the index that covers this particular field.LIKE
operator program-wide by running PRAGMA case_sensitive_like = ON;
Either of these behaviors will enable SQLite to transparently do the above transformation for you; you just keep using LIKE
as always, and SQLite will rewrite the underlying query to use the index.
You can read more about "The LIKE Optimization" on the SQLite Query Optimizer Overview page.