Answers for "mysql utc to local time"

SQL
0

mysql utc to local time

-- using named time zones
SELECT CONVERT_TZ('2018-01-01 12:00:00','UTC','MET');

-- using offset time zones
SELECT CONVERT_TZ('2018-01-01 12:00:00','+00:00','+10:00');
Posted by: Guest on April-07-2022

Code answers related to "mysql utc to local time"

Code answers related to "SQL"

Browse Popular Code Answers by Language