Re: INSERT Syntax

Поиск
Список
Период
Сортировка
Искать
От
Josh Berkus
Тема
Re: INSERT Syntax
Дата
Msg-id
web-112904@davinci.ethosmedia.com
Ответ на
(Joseph Syjuco)
Список
Дерево обсуждения
"Joseph Syjuco" <joseph@asti.dost.gov.ph>
Re: Stephan Szabo <sszabo@megazone23.bigpanda.com>
Re: Peter Eisentraut <peter_e@gmx.net>
Re: INSERT Syntax "Josh Berkus" <josh@agliodbs.com>
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
FAQ