Re: Please help me out on this insert error

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

Предыдущее
От: Charlie Toohey
Дата:
Сообщение: Re: serial column vs. explicit sequence question
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Please help me out on this insert error