博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ThinkPHP多表查询
阅读量:5835 次
发布时间:2019-06-18

本文共 2471 字,大约阅读时间需要 8 分钟。

ThinkPHP多表查询处理

ThinkPHP多表连接查询处理

ThinkPHP关联查询(多表查询)

网上找到三种方法:table()、join()、原生SQL语句查询。(以下三种方法输出结果一致,并且很好的保留了ThinkPHP自己的分页功能)

第一种:table()方法

实例:需要连接查询两张表(表agent和表transinfo)

1
2
3
4
5
6
7
8
9
$Model
=
new 
Model();
$sqlcount
=
"select count(*) as mycount  from agent a ,transinfo t where t.clientId=a.id and t.transType like '%agent%' and a.id in ("
.
$agent_str
.
")"
;
$listCount 
$Model 
->query(
$sqlcount
);
$Page 
new 
Page ( 
$listCount
[0][mycount], 2 );
$show 
$Page
->show ();
$list 
$Model
->table(
'agent a, transinfo t'
)->where(
"t.clientId=a.id and t.transType like '%agent%' and a.id in ("
.
$agent_str
.
")"
)->limit ( 
$Page
->firstRow . 
',' 
$Page
->listRows )->select();
//echo $Model->getLastSql();
$this
->assign(
'list'
,
$list
);
// 赋值数据集
$this
->assign(
'page'
,
$show
);
// 赋值分页输出

第二种:join()方法

实例:需要连接查询两张表(表agent和表transinfo)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$Model
=
new 
Model();
$agentModel 
$Model
->Table(
"agent"
);
$listCount 
$agentModel
->join(
" AS a RIGHT JOIN transinfo t ON t.clientId=a.id and t.transType like '%agent%' and a.id in ("
.
$agent_str
.
")"
)
            
->field(
"count(*) as mycount"
)
            
->select();
$Page 
new 
Page ( 
$listCount
[0][mycount], 2 );
$show 
$Page
->show ();
 
$Model
=
new 
Model();
$agentModel 
$Model
->Table(
"agent"
);
$list 
=    
$agentModel
->join(
" AS a RIGHT JOIN transinfo t ON t.clientId=a.id and t.transType like '%agent%' and a.id in ("
.
$agent_str
.
") order by t.id DESC limit "
.
$Page
->firstRow.
","
.
$Page
->listRows)
            
->field(
"a.*,t.*"
)
            
->select();
//echo $agentModel->getLastSql();
$this
->assign(
'list'
,
$list
);
// 赋值数据集
$this
->assign(
'page'
,
$show
);
// 赋值分页输出

提示:你也可以这样实例化更简洁(官方推荐的):$agentModel = M('Agent'); // 实例化User对象

第三种:原生SQL语句查询法

1
2
3
4
5
6
7
8
9
$Model
=
new 
Model();
$sqlcount
=
"select count(*) as mycount  from agent a ,transinfo t where t.clientId=a.id "
.
$where
" and t.transType like '%agent%' and a.id in ("
.
$agent_str
.
")"
;
$listCount 
$Model 
->query(
$sqlcount
);
$Page 
new 
Page(
$listCount
[0][
'mycount'
],2);
// 实例化分页类 传入总记录数和每页显示的记录数
$show 
$Page
->show();
$sqlList
=
"select t.*,a.* from agent a ,transinfo t where t.clientId=a.id "
.
$where
" and t.transType like '%agent%' and a.id in ("
.
$agent_str
.
") limit {$Page->firstRow},{$Page->listRows}"
;
$list 
$Model 
->query(
$sqlList
);
$this
->assign(
'list'
,
$list
);
// 赋值数据集
$this
->assign(
'page'
,
$show
);
// 赋值分页输出

参考资料:

   本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/1564492,如需转载请自行联系原作者
你可能感兴趣的文章
李娜入选国际网球名人堂 成亚洲第一人
查看>>
为找好心人抚养孩子 浙江一离婚父亲将幼童丢弃公园
查看>>
晚婚晚育 近20年巴西35岁以上孕妇增加65%
查看>>
读书:为了那个美妙的咔哒声
查看>>
jsp改造之sitemesh注意事项
查看>>
SpringBoot-Shiro使用
查看>>
iOS 9.0之后NSString encode方法替换
查看>>
解决 ThinkPHP5 无法接收 客户端 Post 传递的 Json 参数
查看>>
ASMFD (ASM Filter Driver) Support on OS Platforms (Certification Matrix). (文档 ID 2034681.1)
查看>>
CRM Transaction处理中的权限控制
查看>>
[转]linux创建链接文件的两种方法
查看>>
python ipaddress模块使用
查看>>
文件权限
查看>>
busybox里的僵尸进程为何那么多
查看>>
python debug
查看>>
java 连接数据库之一个完整的函数
查看>>
mysql脚本
查看>>
OllyDBG 入门系列教学--让你瞬间成为破解高手
查看>>
Dubbo点滴(2)之集群容错
查看>>
检测不到兼容的键盘驱动程序
查看>>