$timeRule
$timeRule : array
日期查询表达式
时间查询支持
$timeRule : array
日期查询表达式
whereTimeInterval(string $field, string $start, string $interval = 'day', int $step = 1, string $logic = 'AND') : $this
查询某个时间间隔数据
string | $field | 日期字段名 |
string | $start | 开始时间 |
string | $interval | 时间间隔单位 day/month/year/week/hour/minute/second |
int | $step | 间隔 |
string | $logic | AND OR |
whereBetweenTime(string $field, string|int $startTime, string|int $endTime, string $logic = 'AND') : $this
查询日期或者时间范围 whereBetweenTime('time_field', '2018-1-1','2018-1-15')
string | $field | 日期字段名 |
string|int | $startTime | 开始时间 |
string|int | $endTime | 结束时间 |
string | $logic | AND OR |