如何在不同的代码点火器中显示文件

时间:2018-12-18 09:19:40

标签: distinct codeigniter-3

您好,我想区分字段product_code,并且我想显示所有字段 表交易:

---------------------------------------------------
| id | product_code | price | datetime            |
---------------------------------------------------
| 1  | 001          |20     | 2018-18-12 09:09:09 |
| 2  | 002          |30     | 2018-18-12 08:09:09 |
| 3  | 001          |20     | 2018-18-12 08:08:08 |
---------------------------------------------------

这是我的模特:

$this->db->distinct('product_code');
$this->db->select('id','product_code','price','datetime');
$this->db->from($this->table);
return $this->db->get()->result_array();

1 个答案:

答案 0 :(得分:0)

您可以尝试解决此问题的方法:

$this->db->distinct();
$this->db->select('id','product_code','price','datetime');
$this->db->from($this->table);
return $this->db->get()->result_array();

echo $query->num_rows();

OR

$this->db->select('DISTINCT(product_code), ');  
$this->db->from($this->table);  
$query=$this->db->get();  

print_r($this->db->get()->result_array());

echo $query->num_rows();exit;

希望它能对您有所帮助。