在MySQL中,可以通过设置系统变量time_zone
来更改数据库的时区。
SELECT @@global.time_zone;
SELECT @@session.time_zone;
SET GLOBAL time_zone = '+8:00'; # 设置为东八区
SET time_zone = '+8:00'; # 设置为东八区
[mysqld]
default_time_zone = '+8:00' # 设置为东八区
注意:请根据需要调整'+8:00'
为相应的时区表示法。