Re: Case Sensitive "WHERE" Clauses?

Поиск
Список
Период
Сортировка
От Ian Barwick
Тема Re: Case Sensitive "WHERE" Clauses?
Дата
Msg-id 200209270925.36160.barwick@gmx.net
обсуждение исходный текст
Ответ на Re: Case Sensitive "WHERE" Clauses?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Case Sensitive "WHERE" Clauses?
Список pgsql-sql
On Friday 27 September 2002 05:19, Tom Lane wrote:
> Ian Barwick <barwick@gmx.net> writes:
> > Anyone know what the ANSI standard is? I don`t recall any other
> > database apart from MySQL which default to case-insensitive
> > CHAR or VARCHAR columns.
>
> I believe the spec has a notion of a "collation attribute" attached
> to character-type columns.  You could define a collation that makes
> comparisons case insensitive and then mark selected columns that way.
> We don't have anything like that yet, though Tatsuo has been heard
> muttering about how to make it happen ...

For reference, MySQL treats CHAR and VARCHAR columns as
case insensitive by default; to be treated as case sensitive, fields
must be defined or redefined as CHAR BINARY / VARCHAR BINARY.

Personally I prefer handling case (in)sensitivity explicitly in the WHERE
clause or at application level, though if the standard allows it and it's
optional, enabling specific columns to be case insensitive in comparisions
can only be a Good Thing (TM).

Ian Barwick
barwick@gmx.net



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Case Sensitive "WHERE" Clauses?
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Case Sensitive "WHERE" Clauses?