blob: 46ee0f057ce08f062270a9da59e2e18d31720c46 [file] [log] [blame]
-- limit offset in the query
select
b1,
count(distinct a1)
from
t1
group by
b1
order by
b1 limit 5 offset 1;