mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
6 lines
442 B
SQL
6 lines
442 B
SQL
/* Note that queries are written as the user doesn't really understand that the symbol _ has special meaning in LIKE pattern. */
|
|
SELECT count() FROM test.hits WHERE URL LIKE '%/avtomobili_s_probegom/_%__%__%__%';
|
|
SELECT count() FROM test.hits WHERE URL LIKE '/avtomobili_s_probegom/_%__%__%__%';
|
|
SELECT count() FROM test.hits WHERE URL LIKE '%_/avtomobili_s_probegom/_%__%__%__%';
|
|
SELECT count() FROM test.hits WHERE URL LIKE '%avtomobili%';
|