Codeigniter active record query where column contains json array
04:16 19 Aug 2015

I have a column which contain the following [1,2,3...] and $myquery = array(1,2);.

Normally I can write this->db->where_in('column',$query);

My thought was to run a for loop, then nest this to another for loop. But now I am stuck because it is a json array.

php json codeigniter where-clause query-builder