sql >> Base de Datos >  >> RDS >> Mysql

donde condición de un varchar separado por comas en mysql y codeigniter

Pruebe este, pero @juergen ya mencionado no almacene valores ya que separados por comas resulta en un dolor por ahora, puede hacer lo siguiente

$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();

Registro activo

FIND_IN_SET()