Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the following UNIX timestamp:

1298063318

My MySQL server translates this into the following UTC/GMT datestring:

MYSQL> DATE_FORMAT(FROM_UNIXTIME(1298063318), '%Y/%m/%d %H:%i')
MYSQL> 2011/02/18 22:08

So far so good; the IBBoard timestamp converter gives the same output.

However, the IBBoard also translates the timestamp into a EST (GMT-5) datestring:

18/2/2011, 15:08

Since EST is UTC/GMT - 5 hours (=18,000 seconds), I thought the following would give me 2011/02/18, 15:08 as well:

MYSQL> SELECT DATE_FORMAT(FROM_UNIXTIME(1298063318 -18000), '%Y/%m/%d %H:%i')
MYSQL> 2011/02/18 17:08

However, it is off two hours. My question is ** what am I doing wrong here? ** My MySQL server is set to Europe/Paris (GMT+1) timezone. I am able to change this if necessary. Regardless, with what query can I produce 2011/02/18, 15:08 (and not 17:08) as the correct EST datestring from the 1298063318 UNIX timestamp?

share|improve this question
1  
1298063318 is 21:08 on 2011/02/18 UTC, not 22:08 (which is for your local timezone) – Wooble Apr 8 '12 at 14:22
How did I miss that? So now I'm 100% confused. Should I just change the servers timezone to EST to make the conversion or something? – Pr0no Apr 8 '12 at 14:29
dev.mysql.com/doc/refman/5.0/en/… is probably a better idea than messing with the server's clock... – Wooble Apr 8 '12 at 14:35
I've been staring and fiddling around with half the functions on that page, but am just lost here. This has occupied me for two days now. I'm probably overthinking this too much, but I have been going around in circles to get this fixed. My "server" is actually my own PC so perhaps adjusting the timezone for purposes of this query is the fastest way to go... – Pr0no Apr 8 '12 at 14:38
OK, so I'm lost now...In my (Windows) clock configuration I've setthe timezone to EST and have tried queries with both DST adjustment on and off. I have set the default-time-zone in my.ini tot "EST" as well and have restarted mysql server. If I now query SELECT DATE_FORMAT( FROM_UNIXTIME( 1298063318 ) , '%Y/%m/%d %H:%i' ), I still get 2011/02/18 16:08 while ibboard.co.uk/timestamp.php?timestamp=1298063318&tz=0 gives 15:08. Why is my conversion still an hour off? – Pr0no Apr 8 '12 at 15:03

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.