mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
13 lines
616 B
SQL
13 lines
616 B
SQL
select * from (select number, intDiv(number,5) value from numbers(20) order by value limit 3 with ties) ORDER BY number, value;
|
|
|
|
drop table if exists wt;
|
|
create table wt (a Int, b Int) engine = Memory;
|
|
insert into wt select 0, number from numbers(5);
|
|
|
|
select 1 from wt order by a limit 3 with ties;
|
|
select b from (select b from wt order by a limit 3 with ties) order by b;
|
|
select * from (select * from (with a * 2 as c select a, b from wt order by c limit 3 with ties) order by a, b);
|
|
select * from (select * from (select a * 2 as c, b from wt order by c limit 3 with ties) order by c, b);
|
|
|
|
drop table if exists wt;
|