Mysql
 sql >> Database >  >> RDS >> Mysql

Seleziona solo valori univoci da una colonna in codeigniter

Prova così

$this->db->select('DISTINCT `name`'); //You may use $this->db->distinct('name');  
$this->db->select('*');

Seleziona i valori distinti per nome .E il tuo SELECT scritto male, potrebbe essere un errore di battitura. E puoi anche usare GROUP BY come

$this->db->select('*');
$this->db->group_by('name');