From: | Alvar Freude <alvar(dot)freude(at)merz-akademie(dot)de> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Using Array-Values in subselect |
Date: | 2000-11-14 20:51:59 |
Message-ID: | 3A11A5EF.C74A40EE@merz-akademie.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Hi,
i want to create a linked structure of values. Each text has an id, an
array of children ids and the value itself.
CREATE TABLE structure
(
id int8,
children int8[],
value text
);
Now i want to select all values which are connected to a given parent #x
at once. My first idea was this:
SELECT value
FROM structure
WHERE id IN (SELECT children FROM structure WHERE id = #x);
But this causes an error because the array field just returns a string
instead of seperated values. Is there a way to make arrays return sort
of "real arrays" or something usable in a subselect in reasonable speed?
Thank you
Alvar
--
Alvar C.H. Freude | alvar(dot)freude(at)merz-akademie(dot)de
Demo: http://www.online-demonstration.org/ | Mach mit!
Blast-DE: http://www.assoziations-blaster.de/ | Blast-Dich-Fit
Blast-EN: http://www.a-blast.org/ | Blast/english
From | Date | Subject | |
---|---|---|---|
Next Message | Roberto Mello | 2000-11-14 21:15:11 | Re: Using Array-Values in subselect |
Previous Message | Marten Feldtmann | 2000-11-14 20:11:49 | Re: Using a postgres table to maintain unique id? |