mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
13 lines
482 B
SQL
13 lines
482 B
SQL
drop table if exists limit_by;
|
|
|
|
create table limit_by(id Int, val Int) engine = Memory;
|
|
|
|
insert into limit_by values(1, 100), (1, 110), (1, 120), (1, 130), (2, 200), (2, 210), (2, 220), (3, 300);
|
|
|
|
select * from limit_by order by id, val limit 2, 2 by id;
|
|
select * from limit_by order by id, val limit 2 offset 1 by id;
|
|
select * from limit_by order by id, val limit 1, 2 by id limit 3;
|
|
select * from limit_by order by id, val limit 1, 2 by id limit 3 offset 1;
|
|
|
|
drop table limit_by;
|