MySQL Time Zones

前端 未结 6 1452
轻奢々
轻奢々 2020-11-29 04:16

Is there an exhaustive list of MySQL Time Zones?

It seems that the valid values for time_zone in MySQL settings are dependent on the host Operating Syst

6条回答
  •  隐瞒了意图╮
    2020-11-29 04:47

    You can run this query to get a complete list of the timezones MySQL supports:

    SELECT Name
    FROM mysql.time_zone_name
    ORDER BY Name
    

    (Found on this page: https://www.plumislandmedia.net/mysql/time-zones-mysql/)

提交回复
热议问题