Re: Please help me out on this insert error - Mailing list pgsql-sql

From Stephan Szabo
Subject Re: Please help me out on this insert error
Date
Msg-id 20020613150910.N8240-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Please help me out on this insert error  (Vernon Wu <vernonw@gatewaytech.com>)
Responses Re: Please help me out on this insert error  (Vernon Wu <vernonw@gatewaytech.com>)
List pgsql-sql
On Thu, 13 Jun 2002, Vernon Wu wrote:

>
> Command:
>
> Insert into profile (userid, haveChildren)values('id98', 'No');

You presumably used double quotes when creating the column, so
you need to use them to refer to the column from that point on:

insert into profile(userid, "haveChildren") ...




pgsql-sql by date:

Previous
From: Charlie Toohey
Date:
Subject: Re: serial column vs. explicit sequence question
Next
From: Stephan Szabo
Date:
Subject: Re: Please help me out on this insert error