时间:2021-07-01 10:21:17 帮助过:54人阅读
TP中distinct()的用处主要是去除重复的值
在Thinkphp手册中也详细说明了(链接:http://document.thinkphp.cn/manual_3_2.html#distinct)
下面是我的个人例子:
显示的是这样的
在加入distinct的话:
显示结果为
下面为贴出来的代码
$offernum = M('offer')->distinct(true)->where('order_id='.$order_id)->field('user_id,number')->select(); dump($offernum);
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
thinkPHP中session()方法的用法
ThinkPHP中类的构造函数_construct()与_initialize()的区别
thinkPHP引入类的方法
以上就是Thinkphp 中 distinct 的用法的详细内容,更多请关注Gxl网其它相关文章!