Re: ERROR: column "crc" does not exist - Mailing list pgsql-sql

From A. Kretschmer
Subject Re: ERROR: column "crc" does not exist
Date
Msg-id 20070412121900.GD29820@a-kretschmer.de
Whole thread Raw
In response to ERROR: column "crc" does not exist  (<ezequias@fastcon.com.br>)
List pgsql-sql
am  Thu, dem 12.04.2007, um  9:23:39 -0300 mailte ezequias@fastcon.com.br folgendes:
> Hi list,
> 
> I have a table with many fields and the latest field is:
> 
> "CRC" character varying(255),

You have created a field called "CRC", with upper-case.



> 
> When I try to access the table with a select with a where clause like
> 
> Select * from base.points where crc = 'e19e26330a0db2f2435106b16623fa82'

You searched for a field "crc", with lower-case. rewrite your query to :
... where "CRC" = 'e19e26330a0db2f2435106b16623fa82'


Andreas
-- 
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net


pgsql-sql by date:

Previous
From: "Bart Degryse"
Date:
Subject: Re: ERROR: column "crc" does not exist
Next
From: George Weaver
Date:
Subject: Re: ERROR: column "crc" does not exist