summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/table_funcs_spec_join.yql
blob: 07ba37c3ff6f4962c407b094c9d4f270d798c271 (plain) (blame)
1
2
3
4
5
6
7
8
use plato;

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