इसे आज़माएं लेकिन @juergen पहले ही उल्लेख किया गया है कि मूल्यों को स्टोर न करें क्योंकि अल्पविराम से अलग होने के परिणामस्वरूप दर्द होता है, अब आप नीचे के रूप में कर सकते हैं
$this->db->select('*');
$this->db->from('musical_albums');
//$this->db->join('second table name', 'relation id of 1st table = relation id of 2nd table');
//Custom string: in where
$where = " FIND_IN_SET('x',`types`)";
$this->db->where($where);
$query = $this->db->get();