Jump to content

Timezone


Recommended Posts

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;
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...