Re: Nested Table in PostgreSQL or some alternative Variants

From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: Thomas Zuberbuehler <sa(at)zubi(dot)li>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Nested Table in PostgreSQL or some alternative Variants
Date: 2005-11-01 23:35:02
Message-ID: 20051101233502.GW20349@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

What do you mean by 'nested table'? Maybe arrays will do what you want?

Typically (and this applies to other databases as well), this is done
using two tables and refferential integrity. IE:

CREATE TABLE purchase_order(
po_id serial CONSTRAINT purchase_order__po_id PRIMARY KEY
, customer_id int CONSTRAINT purchase_order__customer_RI REFERENCES customer(id)
, more fields...
)

CREATE TABLE po_lines (
po_id int CONSTRAINT po_lines__po_id_RI REFERENCES purchase_order(po_id)
, line_number smallint NOT NULL
, ...
, CONSTRAINT po_lines__po_id_line_number PRIMARY KEY( po_id, line_number)
)

On Mon, Oct 31, 2005 at 02:22:05PM +0100, Thomas Zuberbuehler wrote:
> Hello there
>
> I've a problem. I can't find some information about nested tables in
> PostgreSQL. Is this Features possible in pgsql or not?
>
> * When yes, how i can use and create nested tables with pgsql?
> * When no, which alternative are there (for same problem definition)?
>
> Thank you for help.
> Greetings from Zurich, Switzerland.
> Thomas Zuberbuehler
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster
>

--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Fuhr 2005-11-02 00:44:59 Re: Can't Get SETOF Function to Work
Previous Message Tom Lane 2005-11-01 22:13:30 Re: PGSQL encryption functions