标签: php mysql codeigniter
只想使用codeigniter从db中选择不同的值,但它会返回重复值。您能否请检查我的代码有什么问题:
$this->db->distinct('country'); $this->db->where('id',$id); $query = $this->db->get('table_name');
答案 0 :(得分:3)
可以这样试试吗?
$this->db->distinct(); $this->db->select('country');