Have a problem with array in my where clause. I have an array in my object. YML:
Shoe
ShoeOne
sizes:
- 30
- 31
- 32
- 33
...
ShoeTwo
...
How can I select shoes that matches between two ranges?
Tried to use BETWEEN but array is serialized. Is there function to make some select in serialized array in Doctrine/MySql or better use a string? Or better use what?
This works: