Re: Outer joins aren't working with views
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: mucher@tigana.pl, pgsql-bugs@postgresql.org
Date: 2000-12-15T16:07:07Z
Lists: pgsql-bugs, pgsql-hackers
It works for me: regression=# select t1.*, t2.* from t1 natural left outer join t2; id | id2 | id ----+-----+---- 1 | 1 | 1 2 | 2 | 2 3 | | (3 rows) What version are you using? regards, tom lane