I have this issue that i'm stuck in...
I have a field like an array, values separated by space. Let's say we have these values:
v1: "100 150 200 300"
v2: "50 100"
V3: "130 230 415"
v4: "340 500 600"
...
Then i have two user input values like a min and a max, let's say 120 and 300. I need to select with mysql from table all rows that have an array value between these min and max
So the output should be v1 and v3 from the previous example.
Can someone help me, please?