Re: stupid insert error

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: stupid insert error
Дата
Msg-id 20050624004133.GA39472@winnie.fuhr.org
обсуждение исходный текст
Ответ на stupid insert error  (David Bear <David.Bear@asu.edu>)
Список pgsql-admin
On Thu, Jun 23, 2005 at 05:12:03PM -0700, David Bear wrote:
>
> I guess I'm too stupid to see the error, but I don't understand why
> the following fails.
>
> insert into person3 (asuid, fname, lname, addedby, addedon,
> slopbucket) values ("123455", "name", "name", "entered", "12/12/2004", NULL);
> ERROR:  column "123455" does not exist
>
> is the double quote byting me?

String constants use single quotes (or dollar quotes as of 8.0);
double-quoted strings are interpreted as identifiers.  See "Lexical
Structure" in the "SQL Syntax" chapter of the documentation:

http://www.postgresql.org/docs/8.0/static/sql-syntax.html#SQL-SYNTAX-LEXICAL

If I'm not mistaken, this distinction is defined in the SQL standard.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

В списке pgsql-admin по дате отправления:

Предыдущее
От: David Bear
Дата:
Сообщение: stupid insert error
Следующее
От: "Bruno G. Albuquerque"
Дата:
Сообщение: Re: stupid insert error