Re: [ADMIN] outer joins

2005-08-05 Thread Stephan Szabo
On Fri, 5 Aug 2005, D Kavan wrote: > > Hi, > > Thanks for the reply. That didn't help him, but he asked me to post this. > > There are 66 project id's in the project table and 3 rows in the > project_members table for global_id 2915, but it only returns 3. I would > think it should return 66 row

Re: [ADMIN] outer joins

2005-08-05 Thread Jeff Boes
D Kavan wrote: > There are 66 project id's in the project table and 3 rows in the > project_members table for global_id 2915, but it only returns 3. I > would think it should return 66 rows, with 63 of them having a null > pm.project_id. > > SELECT > p.project_id, pm.project_id > FRO

Re: [ADMIN] outer joins

2005-08-05 Thread Jason Minion
OTECTED] Behalf Of D Kavan Sent: Friday, August 05, 2005 3:32 PM To: pgsql-admin@postgresql.org Subject: Re: [ADMIN] outer joins Hi, Thanks for the reply. That didn't help him, but he asked me to post this. There are 66 project id's in the project table and 3 rows in the project_me

Re: [ADMIN] outer joins

2005-08-05 Thread D Kavan
Hi, Thanks for the reply. That didn't help him, but he asked me to post this. There are 66 project id's in the project table and 3 rows in the project_members table for global_id 2915, but it only returns 3. I would think it should return 66 rows, with 63 of them having a null pm.project_id

Re: [ADMIN] outer joins

2005-08-05 Thread Michael Fuhr
On Fri, Aug 05, 2005 at 03:55:16PM -0400, D Kavan wrote: > One the developers is saying that he can't do outer joins on postgresql. > Is this true? We have postgresql 8.02. No, that isn't true. PostgreSQL has supported outer joins for a long time. > He is using this syntax: > select from A left

Re: [ADMIN] outer joins

2005-08-05 Thread Jason Minion
005-10-31'); I assure you, outer joins work just fine on PostgreSQL. Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of D Kavan Sent: Friday, August 05, 2005 2:55 PM To: pgsql-admin@postgresql.org Subject: [ADMIN] outer joins Hi, One the dev

[ADMIN] outer joins

2005-08-05 Thread D Kavan
Hi, One the developers is saying that he can't do outer joins on postgresql. Is this true? We have postgresql 8.02. He is using this syntax: select from A left outer join b on A.id=B.id; This processes but comes back with a result like it was an inner join. ~DjK ---

Re: [ADMIN] Outer Joins

2001-02-05 Thread The Hermit Hacker
full release is planned for end February, if all goes well ... On Sat, 3 Feb 2001, Steve Doerr wrote: > I saw that outer joins will be supported in ver. 7.1. Does anyone know > when this is expected, or if there is beta support for them currently? > > Thanks, > Steve > > Marc G. Fournier

Re: [ADMIN] Outer Joins

2001-02-04 Thread Anatoly K. Lasareff
> "SD" == Steve Doerr <[EMAIL PROTECTED]> writes: SD> I saw that outer joins will be supported in ver. 7.1. Does anyone know SD> when this is expected, or if there is beta support for them currently? Yes, they are supported in 7.1 beta. See doc. -- Anatoly K. Lasareff Em

[ADMIN] Outer Joins

2001-02-03 Thread Steve Doerr
I saw that outer joins will be supported in ver. 7.1. Does anyone know when this is expected, or if there is beta support for them currently? Thanks, Steve

Re: [ADMIN] Outer joins

1998-11-02 Thread Guido Weber
Try the following: SELECT name,firstname,title FROM TablePerson,TableTitle WHERE TablePerson.fk_idtitle = TableTitle.pk_idtitle UNION SELECT name,firstname,''::varchar(10) FROM TablePerson WHERE fk_idtitle IS NULL; Guido Weber On Mon, 2 Nov 1998 [EMAIL PROTECTED] wrote: > Hello, > > i

[ADMIN] Outer joins

1998-11-02 Thread T . Steubesand
Hello, is there a possibility to use "outer joins" (left outer join) with pgsql? I have a problem joining two tables: TablePerson TableTitle --- -- pk_idperson int primary key