Re: Please help me out on this insert error

Поиск
Список
Период
Сортировка
От Manfred Koizar
Тема Re: Please help me out on this insert error
Дата
Msg-id 3s6igukoh2bmechd9fnhj05os7mnup2q94@4ax.com
обсуждение исходный текст
Ответ на Please help me out on this insert error  (Vernon Wu <vernonw@gatewaytech.com>)
Список 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 по дате отправления:

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: Please help me out on this insert error
Следующее
От: Vernon Wu
Дата:
Сообщение: Re: Please help me out on this insert error