TP中distinct()的用處主要是去除重複的值,下面我透過實例程式碼來介紹下Thinkphp 中distinct 的用法,一起看看吧
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中類別的建構子_construct( )與_initialize()的差異
以上是Thinkphp 中 distinct 的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!