ThinkPHP多表查询

简介:

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 ); // 赋值分页输出




参考资料:

http://hi.baidu.com/wjlhh001/item/18d9a91031081b5e2a3e22af

http://www.yunda51.com/304.html

http://www.w3school.com.cn/sql/sql_join_right.asp


   本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/1564492,如需转载请自行联系原作者








相关文章
|
6月前
|
SQL 数据库
数据库开发之子查询的详细解析
数据库开发之子查询的详细解析
44 0
|
SQL PHP
ThinkPHP的功能类之联表查询
ThinkPHP的功能类之联表查询
|
数据库连接 PHP 数据库
深入了解ThinkPHP 5.1中的数据查询技巧
深入了解ThinkPHP 5.1中的数据查询技巧
222 0
|
6月前
|
SQL 数据库
数据库开发之多表查询的详细解析
数据库开发之多表查询的详细解析
29 0
数据库开发之多表查询的详细解析
|
11月前
|
SQL Oracle 关系型数据库
MySQL基础-多表查询
MySQL基础-多表查询
|
SQL 数据可视化 关系型数据库
【MySQL数据库笔记 - 基础篇】(五)多表查询
【MySQL数据库笔记 - 基础篇】(五)多表查询
64 0
|
PHP
Laravel:whereIn子查询
Laravel:whereIn子查询
188 0
|
关系型数据库 MySQL
|
SQL 关系型数据库 MySQL
MySQL基础-多表查询概述
多表查询就是指从多张表中查询数据。
81 0
|
SQL 关系型数据库 MySQL
MySQL基础之多表查询
项目开发中,在进行数据库表结构设计时,会根据业务需求及业务模块之间的关系,分析并设计表结构,由于业务之间相互关联,所以各个表结构之间也存在着各种联系,基本上分为三种:
MySQL基础之多表查询