I have a query which performs the following
[CODE=oracle]
Select a2 from table_a left outer join table_b on table_a.a1=tabl e_b.b1 and table_b.b1=9999 99[/CODE]
The result of set of this is different from
[CODE=oracle]
select a2 from table_a,table_b where table_a.a1=tabl e_b.b1 and table_b.b1=9999 99
[/CODE]
I am using oracle 9i... Why is it different...
Not too sure...
regards
rneel
[CODE=oracle]
Select a2 from table_a left outer join table_b on table_a.a1=tabl e_b.b1 and table_b.b1=9999 99[/CODE]
The result of set of this is different from
[CODE=oracle]
select a2 from table_a,table_b where table_a.a1=tabl e_b.b1 and table_b.b1=9999 99
[/CODE]
I am using oracle 9i... Why is it different...
Not too sure...
regards
rneel
Comment