Re: Inserting data in composite types

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: Inserting data in composite types
Дата
Msg-id 1163440176.12372.44.camel@dogma.v10.wvs
обсуждение исходный текст
Ответ на Inserting data in composite types  ("Rodrigo Sakai" <rodrigo.sakai@zanthus.com.br>)
Список pgsql-general
On Mon, 2006-11-13 at 09:37 -0300, Rodrigo Sakai wrote:
>   Hi, I have a question about how to insert data in composite types!
>
>
>
>   Imagine the exemple:
>
>
>
> CREATE TYPE t_time AS (
>
>   a date,
>
>   b date
>
> );
>
>
>
> CREATE TABLE salary (
>
>    salary numeric(10,2),
>
>    t_date t_time
>
> );
>
>
>
> I know that if I want to insert data in the table SALARY I just have
> to do like:
>
>
>
>   INSERT INTO salary VALUES (1000.00, ‘(2006/10/10, 2006/12/10)’);
>
>
>
> But if I have another table:
>
>
>
> CREATE TABLE employee (
>
>   employee_id int,
>
>   name varchar(30),
>
>   emp_salary salary
>
> )
>
>
>
> How can I insert a single row in this table???
>
>

insert into employee values(1,'name',(1000,
('2006/10/10','2006/10/10')));

Regards,
    Jeff Davis



В списке pgsql-general по дате отправления:

Предыдущее
От: "Matthew T. O'Connor"
Дата:
Сообщение: Re: AutoVacuum on demand?
Следующее
От: "Shoaib Mir"
Дата:
Сообщение: Re: system tables...