Arkalex
Arkalex

Reputation: 101

How to know my timezone in MySQL

I want to know which is my timezone (GMT, or GMT+1 or ...).
There's any function in MySQL to know it?

Thanks for the answers

Upvotes: 0

Views: 76

Answers (1)

Piyush
Piyush

Reputation: 4007

Check this out.

SELECT TIMEDIFF(NOW(), UTC_TIMESTAMP);

Upvotes: 3

Related Questions