mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
15 lines
284 B
MySQL
15 lines
284 B
MySQL
|
DROP TABLE IF EXISTS lower_test;
|
||
|
|
||
|
CREATE TABLE lower_test (
|
||
|
a Int32,
|
||
|
b String
|
||
|
) ENGINE=MergeTree
|
||
|
PARTITION BY b
|
||
|
ORDER BY a;
|
||
|
|
||
|
INSERT INTO lower_test (a,b) VALUES (1,'A'),(2,'B'),(3,'C');
|
||
|
|
||
|
SELECT a FROM lower_test WHERE lower(b) IN ('a','b') order by a;
|
||
|
|
||
|
DROP TABLE lower_test;
|