使用convert_tz进行日期时间比较

时间:2012-01-31 23:30:25

标签: mysql datetime timezone convert-tz

我有一个表,其中包含日期/时间值,分别分为日期和int字段,而不是单个日期时间。每行都有一个独特的日期和小时组合,因此每天有24行。

我的挑战是当我需要在where语句中考虑这些时区调整时,选择与不同时区的用户相关的数据。例如,如果用户比服务器时间早两个小时,那么where语句需要反映它:

 ...where concat(theDate,' ',theHour) > convert_tz(concat('2012-01-01',' ','00:00:00'), '-8:00', '-6:00')

..比如说PST到中央时间。但显然我不能使用convert_tz或在where子句中计算它的值。

我想使用convert_tz而不是笨拙的DATE_ADD或其他什么。可以做些什么?

也许我错了,你可以在where子句中使用convert_tz。这是核心问题:

select *, convert_tz(concat(theDay,' ',theHour), '-8:00', '-8:00') 'dayTZ' 
from stats 
where convert_tz(concat(theDay,' ',theHour), '-8:00', '-8:00') > '2011-01-25 05:00:00';

以上仍然是早于5的返回小时值。

1 个答案:

答案 0 :(得分:1)

尝试添加str_to_date

select *, convert_tz(sconcat(theDay,' ',theHour), '-8:00', '-8:00') 'dayTZ' 
from stats 
where str_to_date(convert_tz(concat(theDay,' ',theHour), '-8:00', '-8:00'), '%Y-%m-%d %H:%i:%s') > str_to_date('2011-01-25 05:00:00', '%Y-%m-%d %H:%i:%s');