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

From Manfred Koizar
Subject Re: Please help me out on this insert error
Date
Msg-id 3s6igukoh2bmechd9fnhj05os7mnup2q94@4ax.com
Whole thread Raw
In response to Please help me out on this insert error  (Vernon Wu <vernonw@gatewaytech.com>)
List pgsql-sql
On Thu, 13 Jun 2002 13:16:29 +0800, Vernon Wu
<vernonw@gatewaytech.com> wrote:
>
>Command:
>
>Insert into profile (userid, haveChildren)values('id98', 'No');
>
>Error:
>
>ERROR:  Relation 'profile' does not have attribute 'havaChildren'
^                                cut'n'paste error here ?
 

>Table:
>                 Table "profile"
>    Column    |         Type          | Modifiers
>--------------+-----------------------+----------
> userid       | character varying(25) | not null
> [...]
> haveChildren | character varying(20) | not null

Anyway, try
Insert into profile (userid, "haveChildren") values('id98', 'No');

ServusManfred


pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: Please help me out on this insert error
Next
From: Vernon Wu
Date:
Subject: Re: Please help me out on this insert error