Re: newbie sql question...

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: newbie sql question...
Дата
Msg-id 20030527083923.A2773-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на newbie sql question...  (Jason Ziegler <moo@zigfam.org>)
Ответы Re: newbie sql question...  (Jason Ziegler <moo@zigfam.org>)
Список pgsql-general
On Tue, 27 May 2003, Jason Ziegler wrote:

> Hello folks, I'm new to this list, and have been putting up with mysql
> for too long, so please forgive me for asking such a newbie question as
> this:
>
> I have a query that works in mysql:
> "INSERT INTO table1 ( id, column2, column3 ) VALUES ( '1', 'text
> stuff', 'text stuff' ), ( '2', 'more text', 'even more text')"
>
> When I try this in postgresql, it won't work:
> "INSERT INTO table1 ( 'id', 'column2', 'column3' ) VALUES ( '1', 'text
> stuff', 'text stuff' ), ( '2', 'more text', 'even more text')"

There are two problems with this.  The first is that postgresql doesn't
yet support multiple rows in the values section iirc, the second is that
single quoting the column names will give a parse error.

You can either use multiple inserts or possibly copy as workarounds.


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

Предыдущее
От: "scott.marlowe"
Дата:
Сообщение: Re: 7.3.2 Windows Build
Следующее
От: "scott.marlowe"
Дата:
Сообщение: Re: Hello