I've come across a search situation that I am unsure how to approach. I am searching through a set of a column which is a string for example
Row 1: Column Content: 7;15;25
Row 2: Column Content: 5
Row 3: Column Content: 5;7
but I would like the row that has only 5
example: Select * from table where column like '%5%'
The problem with this case is that, the query will bring back all rows when I only needed Row 2 and Row 3
Is there anything that I could do with the query that will allow me to bring back the desired results.
I would truly appreciate the assistance. If there is any confusion with the question, I'll be happy clarify.