Jump to content

Recommended Posts

Posted

By default mysql uses the server's timezone, which is set to UTC. Depending on your scripting language it's probably easier to set the timezone before you do your queries. For instance in php you could use

date_default_timezone_set("America/Los_Angeles");
You can also change the timezone in your raw mysql queries by using convert_tz

select thing, convert_tz(timestamp, @@session.time_zone, '-08:00') from stuff;

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...