| From: | Bruno Wolff III <bruno(at)wolff(dot)to> |
|---|---|
| To: | DownLoad X <x_download(at)hotmail(dot)com> |
| Cc: | pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: Searching for results with an unknown amount of data |
| Date: | 2005-09-06 14:45:41 |
| Message-ID: | 20050906144541.GA30161@wolff.to |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
On Fri, Sep 02, 2005 at 20:40:24 +0100,
DownLoad X <x_download(at)hotmail(dot)com> wrote:
> Now, I want to find all objects that have at most properties 1,2,3, say (so
> something with (1,2) is okay, as is (1,2,3)). I can't see a way to do this
> -- can anyone help?
It sounds like you are trying to find all objects that do not have any
properties outside of a specific list. One way to get that list is:
SELECT a_id
FROM a
WHERE
NOT EXISTS
(SELECT 1
FROM b
WHERE
b.a_id = a.a_id
AND
b.property NOT IN (1, 2, 3)
)
;
This doesn't take into account the semantics of nulls. If your data can have
nulls in it, then you need to decide precisely what you want and adjust
the query appropiately.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | mark | 2005-09-06 14:49:30 | Re: uuid type for postgres |
| Previous Message | Stephan Szabo | 2005-09-06 14:00:33 | Re: ERROR: syntax error at or near "select" at character 9 |