我有一个SQL查询:
select count(*) AS revolutions, DATE_FORMAT(time, '%Y-%m-%d %H') as time_period from `raw_data` where `time` >= '2016-09-10 21:51:33' group by `time_period`
这将在MySQL客户端中返回以下数据:
revolutions | time_period
630 | 2016-09-10 23
2062 | 2016-09-11 00
1839 | 2016-09-11 01
377 | 2016-09-11 02
83 | 2016-09-11 03
325 | 2016-09-11 04
在Laravel中,我构建了一个相同的查询,看起来像这样的转储:
["sql"]=>
string(136) "select count(*) AS revolutions, DATE_FORMAT(time, '%Y-%m-%d %H') as time_period from `raw_data` where `time` >= ? group by `time_period`"
["bindings"]=>
array(1) {
[0]=>
string(19) "2016-09-10 22:02:02"
}
但这会返回以下数据集:
[
{
"revolutions": 1863,
"time_period": "2016-09-10 22"
},
{
"revolutions": 1839,
"time_period": "2016-09-10 23"
},
{
"revolutions": 377,
"time_period": "2016-09-11 00"
},
{
"revolutions": 83,
"time_period": "2016-09-11 01"
},
{
"revolutions": 325,
"time_period": "2016-09-11 02"
}
]
什么可能导致02上的数据丢失,以及03和04上不存在的数据?
编辑:在Lumen中没有设置时区。
修复是将配置值添加到.env
DB_CONNECTION=mysql
DB_TIMEZONE=+02:00
答案 0 :(得分:2)
time
似乎是timestamp
类型,它将时间转换为客户端在连接后应明确指定的时区。
要明确设置,必须发出
SET time_zone = timezone;
查询。
默认值来自config(或CLI参数)指令default-time-zone
参考文献: