子查询-j9九游

首先构造子查询sql,可以使用下面三种的方式来构建子查询。

1、使用select方法

当select方法的参数为false的时候,表示不进行查询只是返回构建sql,例如:

$subquery = db::table('think_user')
    ->field('id,name')
    ->where('id','>',10)
    ->select(false); 

生成的subquery结果为:

select `id`,`name` from `think_user` where `id` > 10 

2、使用fetchsql方法

fetchsql方法表示不进行查询而只是返回构建的sql语句,并且不仅仅支持select,而是支持所有的curd查询。

$subquery = db::table('think_user')
    ->field('id,name')
    ->where('id','>',10)
    ->fetchsql(true)
    ->select();

生成的subquery结果为:

select `id`,`name` from `think_user` where `id` > 10 

3、使用buildsql构造子查询

$subquery = db::table('think_user')
    ->field('id,name')
    ->where('id','>',10)
    ->buildsql();

生成的subquery结果为:

( select `id`,`name` from `think_user` where `id` > 10 )

调用buildsql方法后不会进行实际的查询操作,而只是生成该次查询的sql语句(为了避免混淆,会在sql两边加上括号),然后我们直接在后续的查询中直接调用。

需要注意的是,使用前两种方法需要自行添加‘括号’。

然后使用子查询构造新的查询:

db::table($subquery.' a')
    ->where('a.name','like','thinkphp')
    ->order('id','desc')
    ->select();

生成的sql语句为:

select * from ( select `id`,`name` from `think_user` where `id` > 10 ) a where a.name like 'thinkphp' order by `id` desc

4、使用闭包构造子查询

in/not inexists/not exists之类的查询可以直接使用闭包作为子查询,例如:

db::table('think_user')
->where('id','in',function($query){
    $query->table('think_profile')->where('status',1)->field('id');
})
->select();

生成的sql语句是

select * from `think_user` where `id` in ( select `id` from `think_profile` where `status` = 1 )
db::table('think_user')
->where(function($query){
    $query->table('think_profile')->where('status',1);
},'exists')
->find();

生成的sql语句为

select * from `think_user` where exists ( select * from `think_profile` where `status` = 1 ) 

v5.0.9 版本开始,比较运算也支持使用闭包子查询

文档最后更新时间:2018-04-26 09:53:07
网站地图