I have a database using unix time for its dates ( i am using mySQL). I want to retrieve the dates in daily date format. This is my query:

SELECT FROM_UNIXTIME(time_created) FROM member

This works fine with dates after 1970 (for example, 1314162229) but doesn't work for dates before 1970 (for example, -769338000). Is there any work around here?

link|improve this question

50% accept rate
feedback

2 Answers

up vote 3 down vote accepted

A possible workaround would be to have a constant handy corresponding to the seconds in a certain number of years (preferrably a multiple of 4). You could add this constant, translate the time and then subtract the number of years chosen.

Example: choose 40 years.

Determine the constant:

MySQL [files]> select adddate(from_unixtime(0), interval 40 year);
+---------------------------------------------+
| adddate(from_unixtime(0), interval 40 year) |
+---------------------------------------------+
| 2010-01-01 01:00:00                         |
+---------------------------------------------+
1 row in set (0.09 sec)

MySQL [files]> select unix_timestamp(adddate(from_unixtime(0), interval 40 year));
+-------------------------------------------------------------+
| unix_timestamp(adddate(from_unixtime(0), interval 40 year)) |
+-------------------------------------------------------------+
|                                                  1262304000 |
+-------------------------------------------------------------+
1 row in set (0.09 sec)

Now you can every unix timestamp x between 1930 and 20xx and use it.

select subdate(from_unixtime(x+1262304000), interval 40 year);

With your example -769338000, you get

MySQL [files]> select subdate(from_unixtime(-769338000+1262304000), interval 40 year);
+-----------------------------------------------------------------+
| subdate(from_unixtime(-769338000+1262304000), interval 40 year) |
+-----------------------------------------------------------------+
| 1945-08-15 17:00:00                                             |
+-----------------------------------------------------------------+
1 row in set (0.09 sec)
link|improve this answer
Using this, thank you :) – why.you.and.i Aug 24 '11 at 6:29
feedback

To my knowledge there is no such thing as UNIX time prior to 1/1/1970 00:00 UTC. More at Wikipedia.

link|improve this answer
Does it mean i shouldn't use UNIX time if i'm going to store dates older than 1970 (like birthdays)? – why.you.and.i Aug 24 '11 at 6:11
Sure there is. From your very own link: This can be extended backwards from the epoch too, using negative numbers; thus 1957-10-04T00:00:00Z, 4 472 days before the epoch, is represented by the Unix time number −4 472 × 86 400 = -386 380 800. – cularis Aug 24 '11 at 6:48
@cularis: I missed that part and, to be frank, I've never seen it used like that. The only time that I, personally, needed to do anything with historical dates I had stuff going back to the 1200s, so UNIX time never came up. I noted that a sibling article to the one I linked to says "Some systems correctly handle negative time values, while others do not.". I guess that's what I was thinking of. – Peter Rowell Aug 24 '11 at 15:24
That article also says that you cannot depend on time_t to be signed. And in true Wikipedia fashion, it is incomplete, missing any mention of the best reason, IMHO, for time_t to be signed: it allows time arithmetic to work sanely. That is to say, time_t(-1) doesn't always mean "one second before the epoch." It can also be the result of subtracting two time_ts differing by one second, if the second subtrahend is the later value. If you then add that delta to another time_t, it subtracts 1 second, as you probably expected. But again, you cannot depend on this behavior. – Warren Young Aug 24 '11 at 20:36
feedback

Your Answer

 
or
required, but never shown

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