From: | Patrick Welche <prlw1(at)newn(dot)cam(dot)ac(dot)uk> |
---|---|
To: | F(dot)Guzzetti(at)irpi(dot)pg(dot)cnr(dot)it |
Cc: | PostgreSQL General <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Re: MySQL file system |
Date: | 2001-01-17 20:28:17 |
Message-ID: | 20010117202817.R2347@quartz.newn.cam.ac.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Wed, Jan 17, 2001 at 02:21:01PM +0100, Fausto Guzzetti wrote:
>
> Hello,
>
> I have what I think is a trivial problem. But I wasn't able to find a solution
> in the FAQ or in the docs I have.
>
> It has to do with case sensitivity. I am working with an application of
> PostrreSQL (7.02) and PHP4.
>
> My table name is (for example) avi_f_amm and contains a field named Number
> (capital N)
>
> The query select * from avi_f_amm works fine.
> The query select * from avi_f_amm where Number gt 1 does not because number
> (small cap n) is to a field in the table.
> In other words Postgresql does not recognize "Number" and thinks it is "number"
>
> Any idea of what is going on or where should I look in the documentation?
Try:
select * from avi_f_amm where "Number" > 1;
Cheers,
Patrick
From | Date | Subject | |
---|---|---|---|
Next Message | Robert B. Easter | 2001-01-17 20:35:37 | Re: Re: Time Formats |
Previous Message | Diehl, Jeffrey | 2001-01-17 20:17:57 | RE: Help with query. (*) |