public inbox for [email protected]
help / color / mirror / Atom feedFrom: Robson Fidalgo <[email protected]>
To: [email protected]
To: [email protected]
Subject: Postgresql 8.3X supports Arrays of Composite Types?
Date: Sun, 19 Apr 2009 18:03:26 -0300
Message-ID: <[email protected]> (raw)
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.
Well, I've searched the mailing lists and have found little said about the
OR features. In postgres 8.3X on-line documentation (
http://www.postgresql.org/docs/8.3/static/arrays.html) I found "Arrays of
any built-in or user-defined base type, enum type, or composite type can be
created", however there is no example that explains how can I do an insert
into an attribute that is an Array of Composite Type. Considering the
example below, "persons have N phones" I create (with success) the Person
table with an array of phones, but I have not success with Insert values.
There is some one that can help me?
Thanks in advances,
Robson
Example:
CREATE table phone (
cod varchar,
num varchar);
CREATE TABLE person (
name varchar,
telephone phone[]);
Until here is everything ok, but I have not success with insert values, then
I tried:
1)insert into person values ('Joe', '{("1","1111"),("2","2222") }');
2)insert into person values ('Joe', array[('1','1111'),('2','2222')]);
3)insert into person values ('Joe', array[row('1','1111'),row('2','2222')]);
4)insert into person values ('Joe',
_phone[phone('1','1111'),phone('2','2222')]);**
** considering _phone = name of array type (automatically created by
postgres) and phone = name of composite type (also automatically created by
postgres)
view thread (8+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected]
Subject: Re: Postgresql 8.3X supports Arrays of Composite Types?
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox