Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
либо ставить между ними символ недопустимый в идентификатореЭм. Как не пытался — не постиг тайного смысла. Какую проблему мы при этом решаем?
4.0 The LIKE optimizationИ далее по тексту.
Terms that are composed of the LIKE or GLOB operator can sometimes be used to constrain indices. There are many conditions on this use:
1. The left-hand side of the LIKE or GLOB operator must be the name of an indexed column.
2. The right-hand side of the LIKE or GLOB must be a string literal that does not begin with a wildcard character.
3. The ESCAPE clause cannot appear on the LIKE operator.
4. The build-in functions used to implement LIKE and GLOB must not have been overloaded using the sqlite3_create_function() API.
5. For the GLOB operator, the column must use the default BINARY collating sequence.
6. For the LIKE operator, if case_sensitive_like mode is enabled then the column must use the default BINARY collating sequence, or if case_sensitive_like mode is disabled then the column must use the built-in NOCASE collating sequence.
MySQL и SQLite — регулярные выражения в предикате