aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/library/yql/tests/sql/suites/dq/precompute_parallel.sql
blob: 9910a647482cc27807acc7477f97007969504058 (plain) (blame)
1
2
3
4
5
6
use plato;

$a = select key from Input order by key limit 1;

insert into Output1 select * from Input where key <= $a;
insert into Output2 select * from Input where key >= $a;