Hello all
I got 2 pl/sql tables with the following data as below and i want to do a full outer join on the result.. ,which..Pl/sql Tables are populated with lot of business logic which is not achievable by SQL queries.
PL/SQL Table1:
----------------------
Code D-Code
1 D1
2 D2
3
PL/SQL Table2:
-----------------
D-code D-Name
D1 SAS
D2 ROS
D3 CAS
I want to do an full outer join on these two pl/sql tables to get a result like this
--------------
Code-- D-Name
1 SAS
2 ROS
3 {null}
{null} CAS
I can get this on a straight tables in oracle,, but with pl/sql table ,, can i get the full outer join...
any suggestions is appreciated..
And more over i get weird questions...,bear with me..
Thanks A lot..
(Novice) -- expermenting ....
I got 2 pl/sql tables with the following data as below and i want to do a full outer join on the result.. ,which..Pl/sql Tables are populated with lot of business logic which is not achievable by SQL queries.
PL/SQL Table1:
----------------------
Code D-Code
1 D1
2 D2
3
PL/SQL Table2:
-----------------
D-code D-Name
D1 SAS
D2 ROS
D3 CAS
I want to do an full outer join on these two pl/sql tables to get a result like this
--------------
Code-- D-Name
1 SAS
2 ROS
3 {null}
{null} CAS
I can get this on a straight tables in oracle,, but with pl/sql table ,, can i get the full outer join...
any suggestions is appreciated..
And more over i get weird questions...,bear with me..
Thanks A lot..
(Novice) -- expermenting ....