以下 MYSQL 查询按预期返回日期:
select str_to_date('Thu, 13 May 2021 10:40:00 +0000',
'%a, %d %b %Y %H:%i:%s +0000') the_date;
+---------------------+
| the_date |
+---------------------+
| 2021-05-13 10:40:00 |
+---------------------+
1 row in set (0.00 sec)
日期值字符串来自另一个具有 UTC 时区的数据源。
我需要确保为伦敦正确调整此值(冬季为 GMT,夏季为 BST 或 GMT+1)。为此,我尝试convert_tz
如下使用,但结果是NULL
:
select convert_tz(str_to_date('Thu, 13 May 2021 10:40:00 +0000',
'%a, %d %b %Y %H:%i:%s +0000'),
'UTC', 'Europe/London') the_date;
+----------+
| the_date |
+----------+
| NULL |
+----------+
1 row in set (0.00 sec)
为什么NULL
?