aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/table_funcs_spec_join.sqlx
blob: 05b06478d8bb8988c56a0ca3592f266e6117dea5 (plain) (blame)
1
2
3
4
5
6
7
8
9
/* postgres can not */
use plato;

--insert into Output
select
  TablePath() as table_path
from Input as a join Input as b using(key)
where a.key = '200'
;