Re: [SQL] How to Make Case InSensitive??? - Mailing list pgsql-sql

From Barracuda
Subject Re: [SQL] How to Make Case InSensitive???
Date
Msg-id 19980916134810.21155.rocketmail@send101.yahoomail.com
Whole thread Raw
List pgsql-sql
thank you for this tip!  don't know what the ^ or the $ is used for
but the ~* and the \do helped me out a great deal.  No info on this in
any documentation.

Charles




---David Hartwig <daveh@insightdist.com> wrote:
>
>
>
> Marcio Macedo wrote:
>
> > Hey...
> >
> > How does this " ~* " operator works ?!?!?!
> >
> > David Hartwig wrote:
> > >
> > >
> > >      SELECT * FROM series WHERE upper(NAME) = 'INDIA'
> > >                             or
> > >      SELECT * FROM series WHERE NAME ~* '^india$'
>
> >
>
> I don't use it myself, but it is a case insensitive regular expression
> match operator.    "~' is the case sensitive operator.    Do "\do" in
> psql to see all the operators.
>
>
>

_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com



pgsql-sql by date:

Previous
From: Herouth Maoz
Date:
Subject: Re[2]: [SQL] How to Make Case InSensitive???
Next
From: Jerome Knobl
Date:
Subject: Re: [SQL] How to Make Case InSensitive???