I'm trying to insert a timestamp into the database, I need the timestamp to be in UTC time, not the server's time zone.
INSERT INTO my_table SET time = FROM_UNIXTIME(:epochTime)
But the newly inserted datetime value is not in UTC time, how can I do this?
Perhaps I should also use CONVERT_TZ, but I don't know the timezone from which I convert.