Re: How to force select to return exactly one row - Mailing list pgsql-general

From Dean Rasheed
Subject Re: How to force select to return exactly one row
Date
Msg-id AANLkTimx0c_RpvWn9cwaMZ-O55oGHFq5NbamLUOdweUk@mail.gmail.com
Whole thread Raw
In response to How to force select to return exactly one row  ("Andrus" <kobruleht2@hot.ee>)
List pgsql-general
2010/6/21 Andrus <kobruleht2@hot.ee>:
> if there is no searched primary key row in ko database, select should also
> return empty row.
>
> To get this result I added right join:
>
> SELECT somecolumns
> FROM ko
> RIGHT JOIN (SELECT 1) _forceonerow ON true
> LEFT JOIN t1 ON t1.primarykey= ko.t1foreignkwey
> ...
> LEFT JOIN tn ON tn.primarykey= ko.tnforeignkwey
> WHERE ko.primarykey is null or ko.primarykey='someprimarykeyvalue';
>

The reason this won't return a row if there is no matching PK is that
the WHERE clause is applied after all the joins to filter the overall
result set.

So to get what you want, you would need to re-arrange that to something like:

SELECT original_query.* FROM
( Original query including WHERE clause ) AS original_query
RIGHT JOIN (SELECT 1) AS one_row ON true;

Regards,
Dean

pgsql-general by date:

Previous
From: "Greg Sabino Mullane"
Date:
Subject: Re: No PL/PHP ? Any reason?
Next
From: Shoaib Mir
Date:
Subject: Re: Hot Standby switchover