Hãy thử cái này nhưng @juergen đã được đề cập không lưu trữ các giá trị vì nó được phân tách bằng dấu phẩy dẫn đến việc bạn có thể làm như bên dưới
$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();