From: | "geek24(at)avantel(dot)net" <geek24(at)avantel(dot)net> |
---|---|
To: | pgsql-general(at)postgresql(dot)org, pgsql-admin(at)postgresql(dot)org |
Subject: | Re: About lower and uppercase |
Date: | 2002-11-05 15:43:01 |
Message-ID: | 281450-22002112515431182@M2W085.mail2web.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-general |
Thanks!!!
I use ilike and I get the result that I want...
Thanks!!!!!
Regards!
Original Message:
-----------------
From: Stephan Szabo sszabo(at)megazone23(dot)bigpanda(dot)com
Date: Mon, 04 Nov 2002 21:50:06 -0800 (PST)
To: geek24(at)avantel(dot)net, pgsql-general(at)postgresql(dot)org,
pgsql-admin(at)postgresql(dot)org
Subject: Re: [ADMIN] About lower and uppercase
On Mon, 4 Nov 2002, [iso-8859-1] Sonia Sánchez Díaz wrote:
> Hi!
>
> I don't know if this is possible from postgresql configuration...
>
> I want to ignore the use of uppercase and lowercase from the data restored
> into the DB...
>
> I mean, if I write a query like this:
>
> select * from fruits where fruit_name like 'orange';
>
> I could get any result where the string looks like:
>
> orange
> Orange
> ORANGE
>
> Is it possible???
Not really without doing a little bit of changing
to the query (for example using ILIKE rather than LIKE
or lower(fruit_name) like 'orange' with an appropriate
index on lower(fruit_name).
Theoretically, it could perhaps be possible to create a locale
which compare 'orange' and 'OraNgE' equally and then
initdb in that locale, but I've never tried it so I don't
know if it'd work.
--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Treat | 2002-11-05 16:34:07 | Re: Logging RAISE statement to a logfile aside from syslog |
Previous Message | geek24@avantel.net | 2002-11-05 15:42:59 | Re: About lower and uppercase |
From | Date | Subject | |
---|---|---|---|
Next Message | hr | 2002-11-05 15:59:03 | Why does postgres install try to use cc instead of gcc when compiling tcl ? |
Previous Message | geek24@avantel.net | 2002-11-05 15:42:59 | Re: About lower and uppercase |