db A, B, C 3개
table function : sf_abc 가 있습니다.
그리고 CASE문으로
select
case when aa is not null
then A.sf_abc(aaa,ccc)
else A.sf_abc(aaa)
end as nm
from
(
select * from A.a
union
select * from B.b
union
select * from C c
)
이런상황에서
case when aa is not null
then A.sf_abc(aaa,ccc)
else A.sf_abc(aaa)
end as nm
A db만 가져왔는데 B, C도 가져오고 싶은데요.
어떻게 해결하면 될까요?
잘 안되네요.
아니면
case문 말고 다른 더 좋은 방법이 있을지도....
초보좀 도와주세욤~
case