本文实例讲述了tp5.1 框架数据库高级查询技巧。分享给大家供大家参考,具体如下:
快捷查询方式是一种多字段相同查询条件的简化写法,可以进一步简化查询条件的写法,在多个字段之间用|
分割表示or
查询,用&
分割表示and
查询,可以实现下面的查询,例如:
db::table('think_ur') ->where('name|title','like','thinkphp%') ->where('create_time&update_time','>',0) ->find();
生成的查询sql是:
lect * from `think_ur` where ( `name` like 'thinkphp%' or `title` like 'thinkphp%' ) and ( `create_time` > 0 and `update_time` > 0 ) limit 1
快捷查询支持所有的查询表达式。
区间查询是一种同一字段多个查询条件的简化写法,例如:
db::table('think_ur') ->where('name', ['like', '%thinkphp%'], ['like', '%kancloud%'], 'or') ->where('id', ['>', 0], ['<>', 10], 'and') ->find();
生成的sql语句为:
lect * from `think_ur` where ( `name` like '%thinkphp%' or `name` like '%kancloud%' ) and ( `id` > 0 and `id` <> 10 )limit 1
区间查询的查询条件必须使用数组定义方式,支持所有的查询表达式。
下面的查询方式是错误的:
db::table('think_ur') ->where('name', ['like', 'thinkphp%'], ['like', '%thinkphp']) ->where('id', 5, ['<>', 10], 'or') ->find();
区间查询其实可以用下面的方式替代,更容易理解,因为查询构造器支持对同一个字段多次调用查询条件,例如:
db::table('think_ur') ->where('name', 'like', '%think%') ->where('name', 'like', '%php%') ->where('id', 'in', [1, 5, 80, 50]) ->where('id', '>', 10) ->find();
可以进行多个条件的批量条件查询定义,例如:
db::table('think_ur') ->where([ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ['id', '>', 0], ['status', '=', 1], ]) ->lect();
生成的sql语句为:
lect * from `think_ur` where `name` like 'thinkphp%' and `title` like '%thinkphp' and `id` > 0 and `status` = '1'
注意,
v5.1.7+
版本数组方式如果使用exp
查询的话,一定要用raw
方法。
db::table('think_ur') ->where([ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ['id', 'exp', db::raw('>score')], ['status', '=', 1], ]) ->lect();
数组查询方式,确保你的查询数组不能被用户提交数据控制,用户提交的表单数据应该是作为查询数组的一个元素传入,如下:
db::table('think_ur') ->where([ ['name', 'like', $name . '%'], ['title', 'like', '%' . $title], ['id', '>', $id], ['status', '=', $status], ]) ->lect();
注意,相同的字段的多次查询条件可能会合并,如果希望某一个
where
方法里面的条件单独处理,可以使用下面的方式,避免被其它条件影响。
$map = [ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ['id', '>', 0], ];db::table('think_ur') ->where([ $map ]) ->where('status',1) ->lect();
生成的sql语句为:
lect * from `think_ur` where ( `name` like 'thinkphp%' and `title` like '%thinkphp' and `id` > 0 ) and `status` = '1'
如果使用下面的多个条件组合
$map1 = [ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ]; $map2 = [ ['name', 'like', 'kancloud%'], ['title', 'like', '%kancloud'], ]; db::table('think_ur') ->whereor([ $map1, $map2 ]) ->lect();
生成的sql语句为:
lect * from `t吉林北华大学hink_ur` where ( `name` like 'thinkphp%' and `title` like '%thinkphp' ) or ( `name` like 'kancloud%' and `title` like '%kancloud' )
善用多维数组查询,可以很方便的拼装出各种复杂的sql语句
对于习惯或者重度依赖数组查询条件的用户来说,可以选择数组对象查询,该对象完成了普通数组方式查询和系统的查询表达式之间的桥接,但相较于系统推荐的查询表达式方式而言,需要注意变量的安全性,避免产生sql注入的情况。
使用方法如下:
u think\db\where; $map = [ 'name' => ['like', 'thinkphp%'], 'title' => ['like', '%think%'], 'id' => ['>', 10], 'status' => 1,]; $where = new where;$where['id'] = ['in', [1, 2, 3]];$where['title'] = ['like', '%php%']; db::table('think_ur') ->where(new where($map)) ->whereor($where->enclo()) ->lect();
enclo
方法表示该查询条件两边会加上括号包起来。
使用数组对象查询的情况请一定要注意做好数据类型检查,尽量避免让用户决定你的数据。
生成的sql是:
lect * from `think_ur` where `name` like 'thinkphp%' and `title` like '%think%' and `id` > 10 and `status` =1 or ( `id` in (1,2,3) and `title` like '%php%' )
$name = 'thinkphp';$id = 10;db::table('think_ur')->where(function ($query) u($name, $id) { $query->where('name', $name) ->whereor('id', '>', $id);})->lect();
生成的sql语句为:
lect * from `think_ur` where ( `name` = 'thinkphp' or `id` > 10 )
可见每个闭包条件两边也会自动加上括号,但需要注意,使用闭包查询的时候不能使用cache(true)
数据缓存,而应该使用指定key的方式例如cache('key')
。
可以结合前面提到的所有方式进行混合查询,例如:
db::table('think_ur') ->where('name', ['like', 'thinkphp%'], ['like', '%thinkphp']) ->where(function ($query) { $query->where('id', ['<', 10], ['>', 100], 'or'); }) ->lect();
生成的sql语句是:
lect * from `think_ur` where ( `name` like 'thinkphp%' and `name` like '%thinkphp' ) and ( `id` < 10 or `id` > 100 )
对于一些实在复杂的查询,也可以直接使用原生sql语句进行查询,例如:
db::table('think_ur') ->where('id > 0 and name like "thinkphp%"') ->lect();
为了安全起见,我们可以对字符串查询条件使用参数绑定,例如:
db::table('think_ur') ->where('id > :id and name like :name ', ['id' => 0, 'name' => 'thinkphp%']) ->lect();
v5.1.8+
版本开始,如果你要使用字符串条件查询,推荐使用whereraw
方法。
db::table('think_ur') ->whereraw('id > :id and name like :name ', ['id' => 0, 'name' => 'thinkphp%']) ->lect();
v5.1.5+
版本开始,可以通过调用一次where
方法传入query
对象来进行查询。
$query = new \think\db\query;$query->where('id','>',0)->where('name','like','%thinkphp'); db::table('think_ur') ->where($query) ->lect();
query对象的
where
方法仅能调用一次,如果query
对象里面使用了非查询条件的链式方法,则不会传入当前查询。
$query = new \think\db\query;$query->where('id','>',0)->where('name','like','%thinkphp') ->order('id','desc') // 不会传入后面的查询 ->field('name,id'); // 不会传入后面的查询 db::table('think_ur') ->where($query) ->where('title','like','thinkphp%') // 有效 ->lect();
系统封装了一系列快捷方法,用于简化查询,包括:
whereor
字段or查询wherexor
字段xor查询wherenull
查询字段是否为nullwherenotnull
查询字段是否不为nullwherein
字段in查询wherenotin
字段not in查询wherebetween
字段between查询wherenotbetween
字段not between查询wherelike
字段like查询wherenotlike
字段not like查询whereexists
exists条件查询wherenotexists
not exists条件查询whereexp
表达式查询wherecolumn
比较两个字段下面举例说明下两个字段比较的查询条件wherecolumn
方法的用法。
查询update_time
大于create_time
的用户数据
db::table('think_ur') ->wherecolumn('update_time','>','create_time') ->lect();
生成的sql语句是:
lect * from `think_ur` where ( `update_time` > `create_time` )
查询name
和nickname
相同的用户数据
db::table('think_ur') ->wherecolumn('name','=','nickname') ->lect();
生成的sql语句是:
lect * from `think_ur` where ( `name` = `nickname` )
相同字段条件也可以简化为
db::table('think_ur') ->wherecolumn('name','nickname') ->lect();
快捷查询方式是一种多字段相同查询条件的简化写法,可以进一步简化查询条件的写法,在多个字段之间用|
分割表示or
查询,用&
分割表示and
查询,可以实现下面的查询,例如:
db::table('think_ur') ->where('name|title','like','thinkphp%') ->where('create_time&update_time','>',0) ->find();
生成的查询sql是:
lect * from `think_ur` where ( `name` like 'thinkphp%' or `title` like 'thinkphp%' ) and ( `create_time` > 0 and `update_time` > 0 ) limit 1
快捷查询支持所有的查询表达式。
区间查询是一种同一字段多个查询条件的简化写法,例如:
db::table('think_ur') ->where('name', ['like', '%thinkphp%'], ['like', '%kancloud%'], 'or') ->where('id', ['>', 0], ['<>', 10], 'and') ->find();
生成的sql语句为:
lect * from `think_ur` where ( `name` like '%thinkphp%' or `name` like '%kancloud%' ) and ( `id` > 0 and `id` <> 10 ) limit 1
区间查询的查询条件必须使用数组定义方式,支持所有的查询表达式。
下面的查询方式是错误的:
db::table('think_ur') ->where('name', ['like', 'thinkphp%'], ['like', '%thinkphp']) ->where('id', 5, ['<>', 10], 'or') ->find();
区间查询其实可以用下面的方式替代,更容易理解,因为查询构造器支持对同一个字段多次调用查询条件,例如:
db::table('think_ur') ->where('name', 'like', '%think%') ->where('name', 'like', '%php%') ->where('id', 'in', [1, 5, 80, 50]) ->where('id', '>', 10) ->find();
可以进行多个条件的批量条件查询定义,例如:
db::table('think_ur') ->where([ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ['id', '>', 0], ['status', '=', 1], ]) ->lect();
生成的sql语句为:
lect * from `think_ur` where `name` like 'thinkphp%' and `title` like '%thinkphp' and `id` > 0 and `status` = '1'
注意,
v5.1.7+
版本数组方式如果使用exp
查询的话,一定要用raw
方法。
db::table('think_ur') ->where([ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ['id', 'exp', db::raw('>score')], ['status', '=', 1], ]) ->lect();
数组查询方式,确保你的查询数组不能被用户提交数据控制,用户提交的表单数据应该是作为查询数组的一个元素传入,如下:
db::table('think_ur') ->where([ ['name', 'like', $name . '%'], ['title', 'like', '%' . $title], ['id', '>', $id], ['status', '=', $status], ]) ->lect();
注意,相同的字段的多次查询条件可能会合并,如果希望某一个
where
方法里面的条件单独处理,可以使用下面的方式,避免被其它条件影响。
$map = [ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ['id', '>', 0], ];db::table('think_ur') ->where([ $map ]) ->where('status',1) ->lect();
生成的sql语句为:
lect * from `think_ur` where ( `name` like 'thinkphp%' and `title` like '%thinkphp' and `id` > 0 ) and `status` = '1'
如果使用下面的多个条件组合
$map1 = [ ['name', 'like', 'thinkphp%'], ['title', 'like', '%thinkphp'], ]; $map2 = [ ['name', 'like', 'kancloud%'], ['title', 'like', '%kancloud'], ]; db::table('think_ur') ->whereor([ $map1, $map2 ]) ->lect();
生成的sql语句为:
lect * from `think_ur` where ( `name` like 'thinkphp%' and `title` like '%thinkphp' ) or ( `name` like 'kancloud%' and `title` like '%kancloud' )
善用多维数组查询,可以很方便的拼装出各种复杂的sql语句
对于习惯或者重度依赖数组查询条件的用户来说,可以选择数组对象查询,该对象完成了普通数组方式查询和系统的查询表达式之间的桥接,但相较于系统推荐的查询表达式方方式而言,需要注意变量的安全性,避免产生sql注入的情况。
使用方法如下:
u think\db\where; $map = [ 'name' => ['like', 'thinkphp%'], 'title' => ['like', '%think%'], 'id' => ['>', 10], 'status' => 1,]; $where = new where;$where['id'] = ['in', [1, 2, 3]];$where['title'] = ['like', '%php%']; db::table('think_ur') ->where(new where($map)) ->whereor($where->enclo()) ->lect();
enclo
方法表示该查询条件两边会加上括号包起来。
使用数组对象查询的情况请一定要注意做好数据类型检查,尽量避免让用户决定你的数据。
生成的sql是:
lect * from `think_ur` where `name` like 'thinkphp%' and `title` like '%think%' and `id` > 10 and `status` =1 or ( `id` in (1,2,3) and `title` like '%php%' )
$name = 'thinkphp';$id = 10;db::table('think_ur')->where(function ($query) u($name, $id) { $query->where('name', $name) ->whereor('id', '>', $id);})->lect();
生成的sql语句为:
lect * from `thin黑龙江医药k_ur` where ( `name` = 'thinkphp' or `id` > 10 )
可见每个闭包条件两边也会自动加上括号,但需要注意,使用闭包查询的时候不能使用
cache(true)
数据缓存,而应该使用指定key的方式例如cache('key')
。
可以结合前面提到的所有方式进行混合查询,例如:
db::table('think_ur') ->where('name', ['like', 'thinkphp%'], ['like', '%thinkphp']) ->where(function ($query) { $query->where('id', ['<', 10], ['>', 100], 'or'); }) ->lect();
生成的sql语句是:
lect * from `think_ur` where ( `name` like 'thinkphp%' and `name` like '%thinkphp' ) and ( `id` < 10 or `id` > 100 )
对于一些实在复杂的查询,也可以直接使用原生sql语句进行查询,例如:
db::table('think_ur') ->where('id > 0 and name like "thinkphp%"') ->lect();
为了安全起见,我们可以对字符串查询条件使用参数绑定,例如:
db::table('think_ur') ->where('id > :id and name like :name ', ['id' => 0, 'name' => 'thinkphp%']) ->lect();
v5.1.8+
版本开始,如果你要使用字符串条件查询,推荐使用whereraw
方法。
db::table('think_ur') ->whereraw('id > :id and name like :name ', ['id' => 0, 'name' => 'thinkphp%']) ->lect();
v5.1.5+
版本开始,可以通过调用一次where
方法传入query
对象来进行查询。
$query = new \think\db\query;$query->where('id','>',0)->where('name','like','%thinkphp'); db::table('think_ur') ->where($query) ->lect();
query对象的
where
方法仅能调用一次,如果query
对象里面使用了非查询条件的链式方法,则不会传入当前查询。
$query = new \think\db\query;$query->where('id','>',0)->where('name','like','%thinkphp') ->order('id','desc') // 不会传入后面的查询 ->field('name,id'); // 不会传入后面的查询 db::table('think_ur') ->where($query) ->where('title','like','thinkphp%') // 有效 ->lect();
系统封装了一系列快捷方法,用于简化查询,包括:
whereor
字段or查询wherexor
字段xor查询wherenull
查询字段是否为nullwherenotnull
查询字段是否不为nullwherein
字段in查询wherenotin
字段not in查询wherebetween
字段between查询wherenotbetwe幼儿园三年规划en
字段not between查询wherelike
字段like查询wherenotlike
字段not like查询whereexists
exists条件查询wherenotexists
not exists条件查询whereexp
表达式查询wherecolumn
比较两个字段下面举例说明下两个字段比较的查询条件wherecolumn
方法的用法。
查询update_time
大于create_time
的用户数据
db::table('think_ur') ->wherecolumn('update_time','>','create_time') ->lect();
生成的sql语句是:
lect * from `think_ur` where ( `update_time` > `create_time` )
查询name
和nickname
相同的用户数据
db::table('think_ur') ->wherecolumn('name','=','nickn作文题记ame') ->lect();
生成的sql语句是:
lect * from `think_ur` where ( `name` = `nickname` )
相同字段条件也可以简化为
db::table('think_ur') ->wherecolumn('name','nickname') ->lect();
v5.1.11+
版本开始,支持数组方式比较多个字段
db::name('ur')->wherecolumn([['title', '=', 'name'], ['update_time', '>=', 'create_time'],])->lect();
生成的sql语句是:
lect * from `think_ur` where ( `name` = `nickname` and `update_time` > `create_time` )
查询构造器还提供了两个动态查询机制,用于简化查询条件,包括getby
和getfieldby
。
wherefieldname
查询某个字段的值whereorfieldname
查询某个字段的值getbyfieldname
根据某个字段查询getfieldbyfieldname
根据某个字段获取某个值其中fieldname
表示数据表的实际字段名称的驼峰法表示,假设数据表ur
中有email
和nick_name
字段,我们可以这样来查询。
// 根据邮箱(email)查询用户信息$ur = db::table('ur')->whereemail('thinkphp@qq.com') ->find(); // 根据昵称(nick_name)查询用户$email = db::table('ur') ->wherenickname('like', '%流年%') ->lect(); // 根据邮箱查询用户信息$ur = db::table('ur') ->getbyemail('thinkphp@qq.com'); // 根据昵称(nick_name)查询用户信息$ur = db::table('ur') ->field('id,name,nick_name,email') ->getbynickname('流年'); // 根据邮箱查询用户的昵称$nickname = db::table('ur') ->getfieldbyemail('thinkphp@qq.com', 'nick_name'); // 根据昵称(nick_name)查询用户邮箱$email = db::table('ur') ->getfieldbynickname('流年', 'email');
getby
和getfieldby
方法只会查询一条记录,可以和其它的链式方法搭配使用
5.1的查询构造器支持条件查询,例如:
db::name('ur')->when($condition, function ($query) { // 满足条件后执行 $query->where('score', '>', 80)->limit(10);})->lect();
并且支持不满足条件的分支查询
db::name('ur')->when($condition, function ($query) { // 满足条件后执行 $query->where('score', '>', 80)->limit(10);}有数字的成语, function ($query) { // 不满足条件执行 $query->where('score', '>', 60);});
本文发布于:2023-04-08 18:08:08,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/6f59b034f5bbc6775f932765e6527612.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:tp5.1 框架数据库高级查询技巧实例总结.doc
本文 PDF 下载地址:tp5.1 框架数据库高级查询技巧实例总结.pdf
留言与评论(共有 0 条评论) |