mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
6 lines
256 B
MySQL
6 lines
256 B
MySQL
|
DROP TABLE IF EXISTS t;
|
||
|
create table t (i Int, a Int, s String, index ind_s (s) type set(1) granularity 1) engine = MergeTree order by i;
|
||
|
insert into t values (1, 1, 'a') (2, 1, 'a') (3, 1, 'a') (4, 1, 'a');
|
||
|
SELECT a, i from t ORDER BY a, i;
|
||
|
DROP TABLE t;
|