How can I use the SELECT Now() As CurrentDateTime for GMT, as it displays the tome as GMT-5.

Basically, when the time is: 2011-11-19 09:46:37 in GMT, it displays it as: `2011-11-19 04:46:37

How can I set this for GMT.

Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

One way is by setting the time zone for your session:

SET time_zone = '+00:00';

MySQL "time zone support" documentation.

There's also CONVERT_TZ, which is explained here: MySQL default time format UTC or GMT?

link|improve this answer
How can I use this with the Select Statement – H Bellamy Nov 19 '11 at 10:55
1  
You do this before the SELECT statement (this is a per-connection setting, so it stays active after the select). You can use the CONVERT_TZ() function if you don't want to (re)set the connection's time zone all the time. – Martijn Nov 19 '11 at 10:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.