The following is a VIEW search_result. skills column contains the values that are GROUP_CONCAT with values in some other table.
Now I'm trying to select values from this VIEW with a where_in clause like this:
$s_id = array('2D Design','3D Design');
$this->db->select('id');
$this->db->from('search_result');
$this->db->where_in('skills', $s_id);
On executing this query the result is only 3 rows i.e skills which contains only 2D Design or 2D Design.
I want to display all those rows which contain any of that skills as output.

