Hi. I have a mysql field with a record like: [2,5,11].
I have a query like:
$query = $this->select()
->from($this->_name)
->where('id = ?', $id);
This query work if record is of integer type: 5.
Is it possible to create a query to find 5 in the array? Please advise. Thanks.