here is the field in my table

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?
|
here is the field in my table
how do I select rows where a column contains only 5, not 15
if |
|||||||||
|
|
Using regexp:
(I just recently answered this in Match tags in MYSQL) |
||||
|
|
|
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 = '5' OR services LIKE '5,%' OR services like '%,5' OR services LIKE '%,5,%' But seriously normalize the DB |
|||
|
|
|
You can use
Haven't tried the above expression myself, but something like that would work. EDIT: with one regexp:
|
||||
|
|
|
Actually MySQL provides a
But still beware - such design could result in low performance. |
|||
|
|
|
What you can do is in |
|||
|
|