Re: [SQL] Case in-sensitive searches
Jérome Knöbl <jknobl@mandanet.ch>
From: Jerome Knobl <jknobl@mandanet.ch>
To: Mike Lemler <coronach@datacruz.com>
Cc: pgsql-sql@postgreSQL.org
Date: 1998-05-19T06:59:39Z
Lists: pgsql-sql
Hi,
I found an inellegant sollution. You can put every character in uppercase
like that :
Select * From table_membres where upper(nom) like upper('myname');
JK
Mike Lemler wrote:
> Is there a paramater to a select statement that one can issue to make the
> search case insesitive? Thanks
>
> Michael