Re: stupid insert error - Mailing list pgsql-admin

From Michael Fuhr
Subject Re: stupid insert error
Date
Msg-id 20050624004133.GA39472@winnie.fuhr.org
Whole thread Raw
In response to stupid insert error  (David Bear <David.Bear@asu.edu>)
List 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 by date:

Previous
From: David Bear
Date:
Subject: stupid insert error
Next
From: "Bruno G. Albuquerque"
Date:
Subject: Re: stupid insert error