MySQL UTC timestamp

You can insert the UTC timestamp manually as follows…

INSERT INTO table_name (utc_timestamp)
VALUES (UTC_TIMESTAMP())

Alternatively you can set the timestamp per session using…

SET @@session.time_zone='+00:00';

..or per server (my.cnf)…

[mysqld]
default_time_zone='+00:00'

Back to Top