Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Underscore "_" character problem

Re: Underscore "_" character problem

From: R Balasubramaniam <_at_chennai.tcs.co.in>
Date: Wed, 31 May 2000 10:03:29 +0530
Message-Id: <10513.107205@fatcity.com>


Dear Richard,

Try using this where condition.where product_code like '728$_' ESACAPE '$'. Escape '$' is used for telling the system to match the character '_' and not for any character.
You can also use SUBSTR function in the where class; where SUBSTR(product_Code,1,4) = '728_'

R.Bala Received on Tue May 30 2000 - 23:33:29 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US