It is very difficult to ask this question without giving a proper scenario, so here it goes. I have a MySQL database table with a field that stores an array of numbers. Like so...
id - values
1 - 1,2,3
I need to query against this. Like...
select * from table where values = 3
How to accomplish this?
If this was answered, please point me to the answer because I was unable to find it.
Please note that this is pure MySQL