使用Codeingiter选择具有相同值的行

时间:2016-06-10 07:45:29

标签: php codeigniter

如何使用codeigniter选择具有相同值的所有值。

host customerPERA {
      host-identifier option agent.circuit-id "x:y";
      fixed-address yyy.yyy.yyy.yyy;
      option routers xxx.xxx.xxx.xxx;
      option subnet-mask 255.255.255.0;
}

在我的结果中它只显示1行而不是全部相同的Coupon_Code

我使用codeigniter作为我的活动记录。请帮忙谢谢

1 个答案:

答案 0 :(得分:3)

使用where where而不是group by

 $this->db->where('coupon_code', $coupon_code); 

您可以使用GROUP BY对列中的值进行分组,如果需要,还可以对该列执行计算。您可以在分组列上使用COUNT,SUM,AVG等函数。