Re: Case Sensitive "WHERE" Clauses? - Mailing list pgsql-sql

From Ian Barwick
Subject Re: Case Sensitive "WHERE" Clauses?
Date
Msg-id 200209270925.36160.barwick@gmx.net
Whole thread Raw
In response to Re: Case Sensitive "WHERE" Clauses?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Case Sensitive "WHERE" Clauses?  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: Case Sensitive "WHERE" Clauses?
Next
From: Stephan Szabo
Date:
Subject: Re: Case Sensitive "WHERE" Clauses?