Webmaster Forums - Webmaster forum for HTML, PHP, ASP, CSS and more

Go Back   Webmaster Forums - Webmaster forum for HTML, PHP, ASP, CSS and more > Web Programming > Databases - MySQL, SQL, Oracle, Access and others
User Name
Password

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 11-19-2005, 07:42 AM   #1 (permalink)
twenty1
Member
 
Join Date: Aug 2005
Posts: 34
Default Can I group LIKEs together in a query

Hi,

I'm trying to figure out how to group LIKEs together, such as:

select * from A
where B like ('ccc', 'ddd', 'eee')

suggestions appreciated
twenty1 is offline   Reply With Quote
Sponsored Links
Old 11-20-2005, 07:04 PM   #2 (permalink)
ez2c
Member
 
Join Date: Aug 2005
Location: Texas
Posts: 40
Default

Here's my 2cents on this:

You will need to decide whether you want the conditions connected with ORs or ANDs. You should probably use wildcard characters (%); otherwise, each LIKE in effect becomes a strict equality, and then only the OR version even makes sense.

Find rows where B contains any one (or two, or three) of the three strings:

select *
from A
where B like '%ccc%'
or B like '%ddd%'
or B like '%eee%'

Find rows where B contains all three strings, in any order:

select *
from A
where B like '%ccc%'
and B like '%ddd%'
and B like '%eee%'

Find rows where B contains all three strings, in the given order:

select *
from A
where B like '%ccc%ddd%eee%'

cheers
ez2c is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Points Per Thread View: 1.00
Points Per Thread: 11.00
Points Per Reply: 5.00



» Sponsors

» Links

» Affiliates
Web Hosting
Marketing Find
Merchant Select
SiteMap Builder
Host Compare
Dedicated Servers

» Links

» Sports Network
Paintball Forum
Football Forum
Hockey Forum
Golf Forum
Boxing Forum
Lacrosse Forum
Baseball Forum
SnowBoarding Forum
Soccer Forum
MMA Forum


All times are GMT -4. The time now is 08:55 PM.



LinkBacks Enabled by vBSEO 3.0.0 RC8
Webmaster Forums