omartare Posted February 16, 2021 Posted February 16, 2021 How can i change mysql time zone to record the data coming Quote
Krydos Posted February 20, 2021 Posted February 20, 2021 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; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.