以下由thinkphp教學欄位來介紹ThinkPHP資料庫操作之聚合查詢、時間查詢、進階查詢,希望對需要的朋友有幫助!
聚合查詢
在應用程式中我們經常會用到一些統計數據,例如當前所有(或滿足某些條件)的用戶數、所有使用者的最大積分、使用者的平均成績等等,ThinkPHP為這些統計運算提供了一系列內建的方法,包括:
##用法範例:取得使用者數:Db::table('think_user')->count(); // 助手函数 db('user')->count();
Db::table('think_user')->count('id'); // 助手函数 db('user')->count('id');
Db::table('think_user')->max('score'); // 助手函数 db('user')->max('score');
Db::table('think_user')->where('score>0')->min('score'); // 助手函数 db('user')->where('score>0')->min('score');
Db::table('think_user')->avg('score'); // 助手函数 db('user')->avg('score');
Db::table('think_user')->sum('score'); // 助手函数 db('user')->sum('score');
時間查詢
時間比較
#使用where 方法where
方法支援時間比較,例如:// 大于某个时间 where('create_time','> time','2016-1-1'); // 小于某个时间 where('create_time','<= time','2016-1-1'); // 时间区间查询 where('create_time','between time',['2015-1-1','2016-1-1']);
// 大于某个时间 db('user') ->whereTime('birthday', '>=', '1970-10-1') ->select(); // 小于某个时间 db('user') ->whereTime('birthday', '<', '2000-10-1') ->select(); // 时间区间查询 db('user') ->whereTime('birthday', 'between', ['1970-10-1', '2000-10-1']) ->select(); // 不在某个时间区间 db('user') ->whereTime('birthday', 'not between', ['1970-10-1', '2000-10-1']) ->select();
時間表達式
#也提供了更方便的時間表達式查詢,例如:// 获取今天的博客 db('blog') ->whereTime('create_time', 'today') ->select(); // 获取昨天的博客 db('blog') ->whereTime('create_time', 'yesterday') ->select(); // 获取本周的博客 db('blog') ->whereTime('create_time', 'week') ->select(); // 获取上周的博客 db('blog') ->whereTime('create_time', 'last week') ->select(); // 获取本月的博客 db('blog') ->whereTime('create_time', 'month') ->select(); // 获取上月的博客 db('blog') ->whereTime('create_time', 'last month') ->select(); // 获取今年的博客 db('blog') ->whereTime('create_time', 'year') ->select(); // 获取去年的博客 db('blog') ->whereTime('create_time', 'last year') ->select();
// 获取今天的博客 db('blog') ->whereTime('create_time', 'd') ->select(); // 获取本周的博客 db('blog') ->whereTime('create_time', 'w') ->select(); // 获取本月的博客 db('blog') ->whereTime('create_time', 'm') ->select(); // 获取今年的博客 db('blog') ->whereTime('create_time', 'y') ->select();
// 查询两个小时内的博客 db('blog') ->whereTime('create_time','2 hours') ->select();
進階查詢
#快速查詢
快捷查詢方式是一種多字段相同查詢條件
的簡化寫法,可以進一步簡化查詢條件的寫法,在多個字段之間用| 分割表示OR查詢,用& 分割表示AND查詢,可以實作下面的查詢,例如:Db::table('think_user') ->where('name|title','like','thinkphp%') ->where('create_time&update_time','>',0) ->find();
SELECT * FROM `think_user` WHERE ( `name` LIKE 'thinkphp%' OR `title` LIKE 'thinkphp%') AND ( `create_time` > 0 AND `update_time` > 0 ) LIMIT 1
區間查詢
#區間查詢是一種相同欄位多個查詢條件的簡化寫法,例如:Db::table('think_user') ->where('name',['like','thinkphp%'],['like','%thinkphp']) ->where('id',['>',0],['<>',10],'or') ->find();
SELECT * FROM `think_user` WHERE ( `name` LIKE 'thinkphp%' AND `name` LIKE '%thinkphp') AND ( `id` > 0 OR `id` <> 10 ) LIMIT 1
區間查詢的查詢條件必須使用陣列定義方式,支援所有的查詢表達式。
下面的查詢方式是錯誤的:Db::table('think_user') ->where('name',['like','thinkphp%'],['like','%thinkphp']) ->where('id',5,['<>',10],'or') ->find();
可以進行多個條件的批次條件查詢定義,例如:
Db::table('think_user'->'name' => ['like','thinkphp%'], 'title' => ['like','%thinkphp'], 'id' => ['>',0], 'status'=> 1->
產生的SQL語句為:SELECT * FROM `think_user` WHERE `name` LIKE 'thinkphp%' AND `title` LIKE '%thinkphp' AND `id` > 0 AND `status` = '1'
閉包查詢Db::table('think_user')->select(function($query){ $query->where('name','thinkphp') ->whereOr('id','>',10);
});
SELECT * FROM `think_user` WHERE `name` = 'thinkphp' OR `id` > 10
使用Query對象查詢
也可以事先封裝Query對象,並傳入select方法,例如:
$query = new \think\db\Query;$query->name('user') ->where('name','like','%think%') ->where('id','>',10) ->limit(10); Db::select($query);
如果使用Query 物件的話, select 方法之前呼叫的任何的鍊式運算都是無效。
混合查詢#可以結合前面提到的所有方式進行混合查詢,例如:
Db::table('think_user') ->where('name',['like','thinkphp%'],['like','%thinkphp']) ->where(function($query){ $query->where('id',['<',10],['>',100],'or'); }) ->select();
產生的SQL語句是:SELECT * FROM `think_user` WHERE ( `name` LIKE 'thinkphp%' AND `name` LIKE '%thinkphp') AND ( `id` < 10 or `id` > 100 )
Db::table('think_user') ->where('id > 0 AND name LIKE "thinkphp%"') ->select();
Db::table('think_user') ->where('id > :id AND name LIKE :name ',['id'=>0, 'name'=>'thinkphp%']) ->select();
Db::table('think_user') ->where('name','like','%think%') ->where('name','like','%php%') ->where('id','in',[1,5,80,50]) ->where('id','>',10) ->find();
V5.0.5 版本開始新增了一系列快速方法,用於簡化查詢,包括:
以上是ThinkPHP資料庫操作之聚合查詢、時間查詢、進階查詢的詳細內容。更多資訊請關注PHP中文網其他相關文章!