QUESTION POSED ON: 15 October 2008
My question is regarding FULL OUTER JOINs on derived tables.
My query is as follows:
select tb1.usr,tb1.ADD,tb2.UPD from
(select usr,count(nin) ADD
from RGS8 where act='ADD'
and dte=20080310 group by usr) tb1
FULL OUTER JOIN
(select usr,count(nin) UPD
from RGS8 where act='UPD'
and dte=20080310 group by usr) tb2
ON tb1.usr=tb2.usr
The query executes successfully when using the left or the right
outer joins but no results are given with the full outer joins.
I wonder if there are some constraints with FULL OUTER JOINs?
|