Re: INSERT Syntax

Поиск
Список
Период
Сортировка
От Josh Berkus
Тема Re: INSERT Syntax
Дата
Msg-id web-112904@davinci.ethosmedia.com
обсуждение исходный текст
Ответ на  ("Joseph Syjuco" <joseph@asti.dost.gov.ph>)
Список pgsql-sql
Joseph,

> insert into table1(field1,field2) values (select field1, field2 from
> table
> 2);

Actually, that won't work in SQL Server either.  The correct syntax (for
both databases) is:

INSERT INTO table1 ( field1, field2 )
SELECT field1, field2 FROM table2;

The "VALUES" syntax is only appropriate if you are inserting a set of
constants with no SELECT statement involved.

-Josh Berkus


______AGLIO DATABASE SOLUTIONS___________________________
                                       Josh Berkus
  Complete information technology      josh@agliodbs.com
   and data management solutions       (415) 565-7293
  for law firms, small businesses        fax 621-2533
    and non-profit organizations.      San Francisco

Вложения

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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re:
Следующее
От: "Josh Berkus"
Дата:
Сообщение: Re: More on the TO DO wishlist