站三界导航
首页 TP代码tp5 时间条件查询数据 whereTime的使用方法

tp5 时间条件查询数据 whereTime的使用方法

  • TP代码
  • 来源:站三界导航
  • 192阅读
  • 2022-05-04

在项目开发中,我们可能会遇到按时间条件进行查询,比如在获取当月的数据,会获取当月的开始时间$start_month和结束时间$end_month


Db::name("表名")

->where('start_time','<= time',$end_month)

->where('end_time','>= time',$start_month)

->select();
where方法支持时间比较,例如:

大于某个时间



where('create_time','> time','2016-1-1');

小于某个时间

where('create_time','< time','2016-1-1');
时间区间查询

where('create_time','between time',['2019-1-1','2020-1-1']);
使用whereTime方法

whereTime方法提供了日期和时间字段的快捷查询,示例如下:
大于某个时间

Db::table('think_user')->whereTime('birthday', '>=', '2019-10-1')->select();
小于某个时间

Db::table('think_user')->whereTime('birthday', 'select();
时间区间查询

Db::table('think_user')->whereTime('birthday', 'between', ['2019-10-1', '2020-10-1'])->select();
不在某个时间区间

Db::table('think_user')->whereTime('birthday', 'not between', ['2019-10-1', '2020-10-1'])->select();
时间表达式

还提供了更方便的时间表达式查询,例如:
获取今天的博客

Db::table('cs_blog') ->whereTime('create_time', 'today')->select();
获取昨天的博客

Db::table('cs_blog')->whereTime('create_time', 'yesterday')->select();
获取本周的博客

Db::table('cs_blog')->whereTime('create_time', 'week')->select();
获取上周的博客

Db::table('cs_blog')->whereTime('create_time', 'last week')->select();
获取本月的博客

Db::table('cs_blog')->whereTime('create_time', 'month')->select();
获取上月的博客

Db::table('cs_blog')->whereTime('create_time', 'last month')->select();
获取今年的博客

Db::table('cs_blog')->whereTime('create_time', 'year')->select();
获取去年的博客

Db::table('cs_blog')->whereTime('create_time', 'last year')->select();
如果查询当天、本周、本月和今年的时间,还可以简化为:

获取今天的博客

Db::table('cs_blog')->whereTime('create_time', 'd')->select();
获取本周的博客

Db::table('cs_blog')->whereTime('create_time', 'w')->select();
获取本月的博客
Db::table('cs_blog')->whereTime('create_time', 'm')->select();
获取今年的博客

Db::table('cs_blog')->whereTime('create_time', 'y') ->select();
查询一个小时内的博客

Db::table('cs_blog')->whereTime('create_time','-1 hours')->select();
















本文结束
本文来自投稿,不代表站三界导航立场,如若转载,请注明出处:https://www.zhansanjie.com/article/details/8327.html

版权声明:

1、本文系转载,版权归原作者所有,旨在传递信息,不代表看本站的观点和立场。

2、本站仅提供信息发布平台,不承担相关法律责任。

3、若侵犯您的版权或隐私,请联系本站管理员删除。

4、本文由会员转载自互联网,如果您是文章原创作者,请联系本站注明您的版权信息。

分享
站三界导航
本站声明:本站严格遵守国家相关法律规定,非正规网站一概不予收录。本站所有资料取之于互联网,任何公司或个人参考使用本资料请自辨真伪、后果自负,站三界导航不承担任何责任。在此特别感谢您对站三界导航的支持与厚爱。