Re: pattern matching operator

From: mig(at)utdt(dot)edu
To: oomoomi(at)hotmail(dot)com
Cc: twallingford(at)indexc(dot)com, pgsql-sql(at)postgresql(dot)org
Subject: Re: pattern matching operator
Date: 2000-05-16 15:54:52
Message-ID: 200005161554.MAA20944@ant.utdt
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

You can also do it in plain SQL, no regexp:

select field,field from table where field like '%string%';

>X-Originating-IP: [195.200.226.110]
>From: "omid omoomi" <oomoomi(at)hotmail(dot)com>
>Date: Tue, 16 May 2000 08:28:29 PDT
>Content-Type: text/plain; format=flowed
>X-Mailing-List: pgsql-sql(at)postgresql(dot)org
>Precedence: bulk
>Sender: pgsql-sql-owner(at)hub(dot)org
>
>Hi,
>May be you need some thing like this:
>
>Select field1, field2 from table where field1~*'string' ;
>
>Hope that helps,
>Omid Omoomi
>
>
>>From: "Wallingford, Ted" <twallingford(at)indexc(dot)com>
>>To: pgsql-sql(at)postgresql(dot)org
>>Subject: [SQL] pattern matching operator
>>Date: Tue, 16 May 2000 09:45:55 -0400
>>
>>I need some help (the postgresql.org documentation pages are down??)
>>
>>I need to know what the pattern-matching operator is for string values in a
>>select query...
>>
>>select field,field from table where field ?????? 'string';
>>
>>I want to wildcard both ends of the string..
>>
>>Thanks!
>>
>>Ted Wallingford
>
>________________________________________________________________________
>Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Joseph Shraibman 2000-05-16 16:23:21 Re: pattern matching operator
Previous Message Tom Lane 2000-05-16 15:50:03 Re: Index not used in functions in 7.0?