omartare Posted February 16, 2021 Posted February 16, 2021 How can i change mysql time zone to record the data coming
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;
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now