You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select*from unnest([1, 3]) as lhs
full join unnest([1,2]) as rhs
unnest() オペレーターは right join に対応していないため、 full join も記述できない
解決策
concatenateした配列を用意し、これに対して left joinすることで full joinと同じ出力を得ることができる。
select distinct
lhs, rhs
from unnest([1,2] || [1, 3]) as both
left join unnest([1,2]) as lhs on both = lhs
left join unnest([1,3]) as rhs on both = rhs
The text was updated successfully, but these errors were encountered:
unnestにおいてfull joinはエラーとなる
次のようなクエリはエラーとなる。
unnest() オペレーターは
right join
に対応していないため、full join
も記述できない解決策
concatenateした配列を用意し、これに対して
left join
することで full joinと同じ出力を得ることができる。The text was updated successfully, but these errors were encountered: