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

Home -> Community -> Usenet -> c.d.o.misc -> SQL: Combine LIKE and IN statement?

SQL: Combine LIKE and IN statement?

From: Bob <no_at_mail.com>
Date: Wed, 11 Feb 2004 18:35:04 GMT
Message-ID: <sBuWb.531553$_x2.1127068@zonnet-reader-1>


Can anyone tell me how to improve the following:

Select tbl.city
From tbl
Where tbl.city like 'B%' or
tbl.city like 'G%' or
tbl.city like 'R%'

I was trying:
Where tbl.city like in ('B%', 'G%', 'R%') But apparently this is not the right way.

Thanx,
Bob Received on Wed Feb 11 2004 - 12:35:04 CST

Original text of this message

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