thinkphp join 查询
1 $model = M();
// 表名必须是完整的表名,如果有前缀,要加前缀 2 $count = $model->table(‘wx_wxusers_purview p‘)->join(‘wx_wxusers u on p.openId=u.openid‘)->where($joinWhere)->count(); 3 import(‘Org.Util.Page‘); 4 $page = new Page($count, 10);
// 查询的字段需要使用表别名的使用表别名 5 $field = array(‘p.id‘, ‘u.openid‘, ‘u.headimgurl‘, ‘u.nickname‘, ‘u.province‘, ‘u.city‘); 6 $wxusers = $model->table(‘wx_wxusers_purview p‘)->join(‘wx_wxusers u on p.openId=u.openid‘)->field($field)->where($joinWhere)->limit($page->firstRow.‘,‘.$page->listRows)->select(); 7 $this->wxusers = $wxusers;
8 $this->page = $page->show();
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。