Re: insert into help

Поиск
Список
Период
Сортировка
От Guillaume Lelarge
Тема Re: insert into help
Дата
Msg-id 4C99B1B8.6040607@lelarge.info
обсуждение исходный текст
Ответ на insert into help  (Nicholas I <nicholas.domnic.i@gmail.com>)
Ответы Re: insert into help
Список pgsql-sql
Le 22/09/2010 09:32, Nicholas I a écrit :
> Hi,
> 
>  i have two tables,
> ---------------------------------------------------------------
> *table1
> 
> id type serial, name varchar;*
> *--------------------------------------------------------------
> table 2
> 
> name varchar;*
> ---------------------------------------------------------------
> 
> i want to insert the values of table 2 into table 1, with automatic id's.
> 
> insert into table1(select * from table2);
> 
> is not working, how can i append the data to table 1 with auto incremented
> or nextval.
> 

INSERT INTO table1 (name) SELECT name FROM table2;


-- 
Guillaumehttp://www.postgresql.frhttp://dalibo.com


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

Предыдущее
От: Nicholas I
Дата:
Сообщение: insert into help
Следующее
От: venkat
Дата:
Сообщение: Re: insert into help