EducateYourself
EducateYourself

Reputation: 979

cannot select distinct values using codeigniter

Just want to select distinct values from db using codeigniter but it returns duplicate values. Could you please check what is wrong with my code below:

$this->db->distinct('country');
$this->db->where('id',$id);
$query = $this->db->get('table_name');    

Upvotes: 1

Views: 987

Answers (1)

Punitha Subramani
Punitha Subramani

Reputation: 1477

can try like this?

$this->db->distinct();
$this->db->select('country');

Upvotes: 3

Related Questions