mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
13 lines
458 B
SQL
13 lines
458 B
SQL
select number, intDiv(number,5) value from numbers(20) order by value limit 3 with ties;
|
|
|
|
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 wt order by a limit 3 with ties;
|
|
with a * 2 as c select a, b from wt order by c limit 3 with ties;
|
|
select a * 2 as c, b from wt order by c limit 3 with ties;
|
|
|
|
drop table if exists wt;
|