Re: Select * from users WHERE upper(lastName) = upper('Pringle')

Поиск
Список
Период
Сортировка
От Andrew Sullivan
Тема Re: Select * from users WHERE upper(lastName) = upper('Pringle')
Дата
Msg-id 20030114113447.H5335@mail.libertyrms.com
обсуждение исходный текст
Ответ на Select * from users WHERE upper(lastName) = upper('Pringle')  ("Hale Pringle" <halepringle@yahoo.com>)
Список pgsql-jdbc
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@libertyrms.info>                              M2P 2A8
                                         +1 416 646 3304 x110


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

Предыдущее
От: "Andy Kriger"
Дата:
Сообщение: Re: Using JDBC
Следующее
От: Eric B.Ridge
Дата:
Сообщение: Re: Using JDBC