在thinkphp中,distinct()方法用于去除重复的值,能够返回唯一不同的值,distinct方法的参数是一个布尔值,语法为“$Model->distinct(布尔值参数)->field('name')->select();”。
本文操作环境:Windows10系统、ThinkPHP5版、Dell G3电脑。
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中文网其他相关文章!