Re: newbie sql question...

From: Jason Ziegler <moo(at)zigfam(dot)org>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Re: newbie sql question...
Date: 2003-05-27 15:52:10
Message-ID: 2D5FBAF8-905B-11D7-AB23-003065D2C088@zigfam.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Dear Vincent, Stephan & Jean-Christian,

Thank you for your replies!
I ended up doing exactly what you all advised which of course worked
just fine.

Jason

On Tuesday, May 27, 2003, at 10:41 AM, Stephan Szabo wrote:

> 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.
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Damien 2003-05-27 16:24:40 Re: speed w/ OFFSET/LIMIT
Previous Message Stephan Szabo 2003-05-27 15:47:19 Re: speed w/ OFFSET/LIMIT