Re: Inserting data in a table using sub-selects

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Inserting data in a table using sub-selects
Дата
Msg-id 20040310124834.X36099@megazone.bigpanda.com
обсуждение исходный текст
Ответ на Inserting data in a table using sub-selects  (Andreas Joseph Krogh <andreak@officenet.no>)
Список pgsql-sql
On Wed, 10 Mar 2004, Andreas Joseph Krogh wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Hi, I'd like to fill one table with the contents of another table. Mye schema
> is like this:
>
> CREATE TABLE table1(
> id serial NOT NULL PRIMARY KEY,
> title varchar NOT NULL,
> description varchar
> );
>
> CREATE TABLE table2(
> id int NOT NULL REFERENCES(table1(id) ON DELETE CASCADE,
> content varchar NOT NULL
> );
>
> Now - is there a way I can do something like:
> INSERT INTO table2(id, content) values (select t1.id, coalesce(t1.title, '')
> || ' ' || coalesce(t1.description, '') as content from table1 t1);

I think you mostly just want to remove the values():

Insert into table2(id, content) select t1.id, coalesce(t1.title, '')|| ' ' || coalesce(t1.description, '') as content
fromtable t1;
 


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

Предыдущее
От: Andreas Joseph Krogh
Дата:
Сообщение: Inserting data in a table using sub-selects
Следующее
От: Rajesh Kumar Mallah
Дата:
Сообщение: Tsearch2 question: getting histogram of the vector elements