I had an issue where the server time wasn't set to the correct timezone and now need to update the created datetime for all users. New users from here on in will be using the correct timezone.
Essentially, I need it to run through all rows in table users and update column created with + 11 hours
I've tried this but it errors:
select `created` FROM `users` + INTERVAL 11 HOUR