thinkphp多表联合查询

前端之家收集整理的这篇文章主要介绍了thinkphp多表联合查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.两个表查询

field('projectno')->where(array('id'=>$userid))->select(); $xq = M('project'); $datas = $xq->field('name')->where(array('id'=>$data[0][projectno]))->select(); $this->assign('xq',$datas); $this->assign('title',$datas[0][name].'物业系统');

2.联合查询:联合查询需要写表的全名。

join('INNER JOIN pro_project ON pro_cuser.projectno = pro_project.id')->where(array('pro_cuser.id'=>$userid))->select(); $this->assign('xq',$data); $this->assign('title',$data[0][name].'物业系统');
原文链接:https://www.f2er.com/thinkphp/67923.html

猜你在找的ThinkPHP相关文章