ClickHouse/tests/queries/0_stateless/01513_ilike_like_cache.sql

6 lines
119 B
MySQL
Raw Normal View History

2020-10-02 14:29:20 +00:00
SELECT 'hello' like 'hell%';
SELECT 'HELLO' ilike 'hell%';
SELECT 'world' ilike 'Wo%Ld';
SELECT 'world' like 'Wo%Ld';