在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'
為相應的時區表示法。