aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/dq/precompute_tree.sql
blob: 2073f261e38fee6b0093379a599979fd949f9090 (plain) (blame)
1
2
3
4
5
6
7
8
9
use plato;

$a = select max(key) from Input;

$b = select min(subkey) from Input where key < $a;

$c = select min(key) from Input where key < "080";

select * from Input where key > $c and subkey > $b;