aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/column_group/publish.sql
blob: d9f7b9e8558deef88ca8e8d9752e452557cbfd82 (plain) (blame)
1
2
3
4
5
6
7
8
USE plato;

$i = select * from Input where a > "a";

select a,b,c,d from $i;
select c,d,e,f from $i;

insert into Output select * from $i;