summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/join/left_cast_to_string.yql
blob: 5d41a78255ea17691f399f01ddc24d74a9b66b7d (plain) (blame)
1
2
PRAGMA DisableSimpleColumns;
select Input1.key as key, Input1.subkey, Cast(Input3.value as varchar) as value from plato.Input1 left join plato.Input3 using (key) order by key;