From: | Andrew Sullivan <andrew(at)libertyrms(dot)info> |
---|---|
To: | pgsql-jdbc(at)postgresql(dot)org |
Subject: | Re: Select * from users WHERE upper(lastName) = upper('Pringle') |
Date: | 2003-01-14 16:34:47 |
Message-ID: | 20030114113447.H5335@mail.libertyrms.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-jdbc pgsql-sql |
On Fri, Jan 10, 2003 at 06:45:43PM -0500, Hale Pringle wrote:
> I have notices that when you want to use the upper() function, you must also
> use the trim().
No. But. . .
> For example,
> In a situation where a column names lastname is char(40):
> SELECT * FROM users WHERE lastname = 'Pringle' returns one row.
>
> SELECT * FROM users WHERE UPPER(lastname) = UPPER('Pringle') will return
> zero rows.
>
> SELECT * FROM users WHERE TRIM(UPPER(lastname) = TRIM(UPPER('Pringle'))
> will return one row.
>
> This seems odd to me. Can someone explain?
. . .yes. The problem has to so with the char() data type, which is
padded per spec. So if you do anything on it, you need to trim() it.
I believe there is a special case in place in the spec just for the
SELECTs, but someone more familiar with the specification can help.
If you don't really need exactly 40 characters, use varchar() or text().
A
--
----
Andrew Sullivan 204-4141 Yonge Street
Liberty RMS Toronto, Ontario Canada
<andrew(at)libertyrms(dot)info> M2P 2A8
+1 416 646 3304 x110
From | Date | Subject | |
---|---|---|---|
Next Message | Eric B.Ridge | 2003-01-14 16:43:40 | Re: Using JDBC |
Previous Message | Andy Kriger | 2003-01-14 16:00:31 | Re: Using JDBC |
From | Date | Subject | |
---|---|---|---|
Next Message | Josh Berkus | 2003-01-14 19:38:43 | Re: query speed joining tables |
Previous Message | Tom Lane | 2003-01-14 15:51:53 | Re: database broken ? |