ThinkPHP子查询

Posted MeetU

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP子查询相关的知识,希望对你有一定的参考价值。

$m = D("qipai_logic.roomhisscoredetail");
$where[‘uid‘] = $uid;    
$productinfo = $m->where($where)->field(‘roomid,uid,name,max(turn) as roomturn‘)->group(‘roomid‘)->buildSql();//子查询 
$allturn = M()->table($productinfo.‘ a‘)->field(‘uid,name,sum(roomturn) allturn‘)->select();  //总局数

 

以上是关于ThinkPHP子查询的主要内容,如果未能解决你的问题,请参考以下文章