Re: [BUGS] The problem with FULL JOIN

2008-03-30 Thread Stephan Szabo
On Sun, 30 Mar 2008 [EMAIL PROTECTED] wrote: > PROBLEM: > How to FULL JOIN groups=1 from table 'a' with groups=2 from table 'b' > and exclude original NULL groups not thouse which FULL JOIN produce? As far as I can tell, all the results you got were exactly what the SQL spec requires for the que

Re: [BUGS] The problem with FULL JOIN

2008-03-30 Thread Gregory Stark
<[EMAIL PROTECTED]> writes: > PROBLEM: > How to FULL JOIN groups=1 from table 'a' with groups=2 from table 'b' > and exclude original NULL groups not thouse which FULL JOIN produce? ... SELECT * FROM (select * from a where a.groups = 1) AS a FULL OUTER JOIN (select * from b where b.groups = 2)

[BUGS] The problem with FULL JOIN

2008-03-30 Thread Eugen.Konkov
PROBLEM: How to FULL JOIN groups=1 from table 'a' with groups=2 from table 'b' and exclude original NULL groups not thouse which FULL JOIN produce? DESCRIPTION: I have a schema which is attached at file '123': while FULL JOIN ing I get: postgres=# SELECT * FROM a FULL JOIN b ON a.num1 = b.num1;