thinkphp v 5時間クエリー
2498 ワード
時間の比較
1.whereメソッドの使用
timestamps、datetime、date、int時間タイプ(データベースフィールドに基づいて設定されたタイプ)をサポート
2. whereTime
3.時間式
当日、今週、今月、今年の時間を検索すると、次のように簡略化できます.
1.whereメソッドの使用
timestamps、datetime、date、int時間タイプ(データベースフィールドに基づいて設定されたタイプ)をサポート
where('create_time','> time','2017/9/20 9:36:2','int')//==>WHERE `create_time` > 1505871362"
//
where('create_time','between time',['2015-1-1','2016-1-1']);
2. whereTime
whereTime
メソッドでは、日付フィールドと時刻フィールドのショートカットクエリーが提供されます.//===>"SELECT * FROM `cms_user` WHERE `create_time` > 1505871362"
Db::table('cms_user')->whereTime('create_time','>','2017/9/20 9:36:2','int')->select();
//
Db::table('cms_user')->whereTime('birthday', 'between', ['1970-10-1', '2000-10-1'])->select();
3.時間式
//
Db::table('think_blog') ->whereTime('create_time', 'today')->select();
//
Db::table('think_blog')->whereTime('create_time', 'yesterday')->select();
//
Db::table('think_blog')->whereTime('create_time', 'week')->select();
//
Db::table('think_blog')->whereTime('create_time', 'last week')->select();
//
Db::table('think_blog')->whereTime('create_time', 'month')->select();
//
Db::table('think_blog')->whereTime('create_time', 'last month')->select();
//
Db::table('think_blog')->whereTime('create_time', 'year')->select();
//
Db::table('think_blog')->whereTime('create_time', 'last year')->select();
当日、今週、今月、今年の時間を検索すると、次のように簡略化できます.
//
Db::table('think_blog')->whereTime('create_time', 'd')->select();
//
Db::table('think_blog')->whereTime('create_time', 'w')->select();
//
Db::table('think_blog')->whereTime('create_time', 'm')->select();
//
Db::table('think_blog')->whereTime('create_time', 'y') ->select();
V5.0.5+
バージョンから開始し、次の方法で時間クエリーを行うこともできます.//
Db::table('think_blog')->whereTime('create_time','-2 hours')->select();