Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表,其中有一个日期列。此列是时间戳类型。列中的数据显示 IST 时区的时间。我想将其数据转换为另一个时区。你有什么建议吗。我正在使用 Mysql 数据库。
CONVERT_TZ (dt,from_tz,to_tz)
例子:
SELECT CONVERT_TZ('2006-01-01 11:00:00','+00:00','+10:00');