how to search between three different values in mysql? -
i have mysql database data this:
str = '554a41a6e4d9d 677 3'
and want search values exactly match '677' part (the second part of text, after first).
how can accomplish this?
if 'parts' delimited space, can use like
:
select [cols] [table] [col] '% 677 %'
Comments
Post a Comment