ClickHouse/tests/queries/0_stateless/01513_ilike_like_cache.sql
2020-10-02 17:29:20 +03:00

6 lines
119 B
SQL

SELECT 'hello' like 'hell%';
SELECT 'HELLO' ilike 'hell%';
SELECT 'world' ilike 'Wo%Ld';
SELECT 'world' like 'Wo%Ld';