Reputation: 101
I want to know which is my timezone (GMT, or GMT+1 or ...). There's any function in MySQL to know it?
GMT
GMT+1
Thanks for the answers
Upvotes: 0
Views: 76
Reputation: 4007
Check this out.
SELECT TIMEDIFF(NOW(), UTC_TIMESTAMP);
Upvotes: 3