ClickHouse/tests/queries/0_stateless/01142_with_ties_and_aliases.sql
2020-06-16 01:24:00 +03:00

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;