Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

here is the field in my table

service_field

how do I select rows where a column contains only 5, not 15 if SELECT * FROMvendorWHEREservicesLIKE '%5%' it will select that have 15 too. any idea?

share|improve this question
5  
If you have control over your database structure, it's in need of normalization. – BoltClock Aug 26 '11 at 1:52
1  
normalize properly? – Randy Aug 26 '11 at 1:52

6 Answers

up vote 0 down vote accepted

Using regexp:

SELECT * FROM `VENDOR` WHERE `services` REGEXP '[[:<:]]5[[:>:]]';

(I just recently answered this in Match tags in MYSQL)

share|improve this answer

As other comments noted, normalize your database. But, here's a hack to get what you're looking for temporarily:

select * from vendor where ',' + services + ',' like '%,5,%'
share|improve this answer
if only 5 is there then what???? – DShah Aug 26 '11 at 1:57
1  
Thats what the ',' surrounding services does. If its only 5, it makes the column data ",5," and, therefore, finds ,5,. – Derek Kromm Aug 26 '11 at 1:58
@Derek Oh, I see what 'ya did there. +1 for being clever – Adam Jones Aug 26 '11 at 2:03

select * from vendor where services = '5' OR services LIKE '5,%' OR services like '%,5' OR services LIKE '%,5,%'

But seriously normalize the DB

share|improve this answer

You can use regexp:

select * from my_table
    where 
    my_col regexp '^5$' or
    my_col regexp ',5$' or
    my_col regexp ',5,';

Haven't tried the above expression myself, but something like that would work.

EDIT: with one regexp:

select * from my_table
    where 
    my_col regexp '^5$|,5$|,5,'
share|improve this answer

Actually MySQL provides a FIND_IN_SET function for such comma-separated strings. This is simpler and cleaner than complex like or regexp solutions:

mysql> select * from vendor where find_in_set('5', services) > 0;
+----+----------+
| id | services |
+----+----------+
|  1 | 5        |
|  3 | 9,5      |
+----+----------+
2 rows in set (0.00 sec)

But still beware - such design could result in low performance.

share|improve this answer

What you can do is in where condition you can write services='5' or services like '%,5' or services like '%,5,%' or services like '5,%'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.