On Mon, Apr 20, 2009 at 8:13 AM, Robson Fidalgo <rdnf@cin.ufpe.br> wrote:
Hi David,
Thanks for your help, but I want a relational-object solution. The solution presented by Tom Lane (Thanks Tom!!!!) runs very well and it is a relational-object implementation (I suggest put a similar example in postgresql 8.3X documentation).
Cheers,
Robson.
On Sun, Apr 19, 2009 at 8:56 PM, David Fetter <david@fetter.org> wrote:
On Sun, Apr 19, 2009 at 06:03:26PM -0300, Robson Fidalgo wrote: > Hello, > I am using postgresql 8.3X and I created a table (see example below) > that has an attribute that is an Array of a Composite Type (ROW). > However, I do not know how can I insert a record in this table.
You want a normalized table anyhow. If you want something denormalized, use a view.
> Example: > > CREATE table phone ( > cod varchar, > num varchar); > > CREATE TABLE person ( > name varchar, > telephone phone[]);