I know that you can use LIKE for the select statement to search for a string, and then use wildcards to match that string .. ex:
Select * from table where first_name LIKE '%r%';
Will return names such as robert, roland, craig, etc.
I am curious how you will look for the actual pattern in a string such as%:
Select * from table where values LIKE '% % %';
(average% is what you would be looking for) (obviously this is the wrong way to do this, so I ask).
toups
source share