Re: Case-sensitive - Mailing list pgsql-admin

From Bruno Wolff III
Subject Re: Case-sensitive
Date
Msg-id 20070125174558.GA7220@wolff.to
Whole thread Raw
In response to Case-sensitive  ("Alexander B." <burbello3000@yahoo.com.br>)
List pgsql-admin
On Thu, Jan 25, 2007 at 08:52:28 -0200,
  "Alexander B." <burbello3000@yahoo.com.br> wrote:
> Hi,
>
> One developer asked me about case-sensitive, if its possible disable
> Postgres not consider when using comparative functions.
> Eg.:
> select * from people
> where upper(name) like upper('A%');
>
> Is there any parameter that don't take in account case-sensitive, or any
> other way to treat??

You can use ilike, though using upper (on the column, not the pattern) has the
advantage that you can create functional indexes that can be used to speed
things up in some cases. There is also an operator for doing case insensitive
regular expression matching.

pgsql-admin by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Case-sensitive
Next
From: "Campbell, Lance"
Date:
Subject: Re: Logging just SQL commands in an SQL script format