aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/insert/select_subquery.sql
blob: 08015031cc04f0922f531e89d6942b25e394f9ad (plain) (blame)
1
2
3
4
5
6
/* postgres can not */
use plato;

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

insert into Output (key) select $a;