本文操作环境:Windows10系统、ThinkPHP3.2版、Dell G3电脑。
thinkphp中distinct的用法是什么
TP中distinct()的用处主要是去除重复的值
DISTINCT 方法用于返回唯一不同的值 。
$Model->distinct(true)->field("name")->select();
生成的SQL语句是:
SELECT DISTINCT name FROM think_user
示例如下:
显示的是这样的
在加入distinct的话:
显示结果为
下面为贴出来的代码
$offernum = M("offer")->distinct(true)->where("order_id=".$order_id)->field("user_id,number")->select();dump($offernum);
推荐学习:《PHP视频教程》
以上就是thinkphp中distinct的用法是什么的详细内容,更多请关注php中文网其它相关文章!