Building a "complex" select? - Mailing list pgsql-general

From Bjørn T Johansen
Subject Building a "complex" select?
Date
Msg-id 4263DF45.3040809@havleik.no
Whole thread Raw
Responses Re: Building a "complex" select?  (Scott Marlowe <smarlowe@g2switchworks.com>)
*bsd port that installs the contribs?  (Matt Van Mater <matt.vanmater@gmail.com>)
List pgsql-general
I need a select like this..:

select ordre.id, ordre.desc, log_stop.stoptype from ordre left outer join log_stop on
ordre.id = log_stop.ordreid where ordre.id = 22

The problem is that I need to include "where log_stop.stoptype = 1". So if log_stop
includes 3 rows with stoptype = 1 and ordreid = 22, my select should return 3 rows.
Also, if log_stop includes 3 rows with stoptype = 1 and 2 rows with stoptype = 2, my
select should still return 3 rows. And if there are 0 rows with stoptype = 1, my
select should return 1 row.

Is this possible?


Regards,

BTJ

--
-----------------------------------------------------------------------------------------------
Bjørn T Johansen

btj@havleik.no
-----------------------------------------------------------------------------------------------
Someone wrote:
"I understand that if you play a Windows CD backwards you hear strange Satanic messages"
To which someone replied:
"It's even worse than that; play it forwards and it installs Windows"
-----------------------------------------------------------------------------------------------

pgsql-general by date:

Previous
From: "Dinesh Pandey"
Date:
Subject: 'Select INTO" in Execute (dynamic query )
Next
From: Scott Marlowe
Date:
Subject: Re: Building a "complex" select?