In my Mysql 5.0 DB I have a column to control LastUpdated information. The Column is a TimeStamp one and MySql automatic updates data.
I\'m trying to select this co
Besides changing the default timezone of the server, the timezone can also be adjusted per connection by executing this SQL statement:
SET time_zone = timezone;
Where timezone is the name of the timezone (see MySQL docs).
Alternatively, you can also convert a timestamp to a different timezone using the CONVERT_TZ function.