Hi everybody,
my problem is the following:
I've two tables, A and B, with an item key necessary to link them. I want to retrieve data from table B that do not match with data in table A.
I already made this in SQL Server (using right join) and it's working well.
Now I've to do the same in Oracle (8i).
The following is my SELECT statement in Oracle but... it doesn't work properly! I mean, there is no error message but I am not able to retrieve non-matching data...
SELECT A.LAYER_NAME,B.LAYER_NAME FROM TABLE_A A,TABLE_B B WHERE A.LAYER_NAME = B.LAYER_NAME (+);
Waiting for someone helping me...
Thanks in advance!
my problem is the following:
I've two tables, A and B, with an item key necessary to link them. I want to retrieve data from table B that do not match with data in table A.
I already made this in SQL Server (using right join) and it's working well.
Now I've to do the same in Oracle (8i).
The following is my SELECT statement in Oracle but... it doesn't work properly! I mean, there is no error message but I am not able to retrieve non-matching data...
SELECT A.LAYER_NAME,B.LAYER_NAME FROM TABLE_A A,TABLE_B B WHERE A.LAYER_NAME = B.LAYER_NAME (+);
Waiting for someone helping me...
Thanks in advance!