码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp join 查询

时间:2014-11-06 19:05:31      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   使用   sp   div   on   log   

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();

 

thinkphp join 查询

标签:style   blog   color   ar   使用   sp   div   on   log   

原文地址:http://www.cnblogs.com/beanliu/p/4079328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!