Thinkphp 中 distinct 的用法解析

前端之家收集整理的这篇文章主要介绍了Thinkphp 中 distinct 的用法解析前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

TP中distinct()的用处主要是去除重复的值

在ThinkPHP手册中也详细说明了(链接PHP.cn/manual_3_2.html#distinct">http://document.thinkPHP.cn/manual_3_2.html#distinct)

下面是我的个人例子:

显示的是这样的

在加入distinct的话:

显示结果为

下面为贴出来的代码

distinct(true)->where('order_id='.$order_id)->field('user_id,number')->select(); dump($offernum);

以上所述是小编给大家介绍的ThinkPHP 中 distinct 的用法解析。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

原文链接:https://www.f2er.com/thinkphp/18255.html

猜你在找的ThinkPHP相关文章