Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

onde condição de um varchar separado por vírgula no mysql e codeigniter


Tente este, mas @juergen já mencionado não armazene valores separados por vírgulas, isso resulta em uma dor por enquanto você pode fazer como abaixo
$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();

Active Record

FIND_IN_SET()