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

What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.

share|improve this question

18 Answers

up vote 415 down vote accepted

Timestamps in MySQL generally used to track changes to records, and are often updated every time the record is changed. If you want to store a specific value you should use a datetime field.

If you meant that you want to decide between using a UNIX timestamp or a native MySQL datetime field, go with the native format. You can do calculations within MySQL that way ("SELECT DATE_ADD(my_datetime, INTERVAL 1 DAY)") and it is simple to change the format of the value to a UNIX timestamp ("SELECT UNIX_TIMESTAMP(my_datetime)") when you query the record if you want to operate on it with PHP.

share|improve this answer
206  
An important difference is that DATETIME represents a date (as found in a calendar) and a time (as can be observed on a wall clock), while TIMESTAMP represents a well defined point in time. This could be very important if your application handles time zones. How long ago was '2010-09-01 16:31:00'? It depends on what timezone you're in. For me it was just a few seconds ago, for you it may represent a time in the future. If I say 1283351460 seconds since '1970-01-01 00:00:00 UTC', you know exactly what point in time I talk about. (See Nir's excellent answer below). [Downside: valid range]. – MattBianco Sep 1 '10 at 14:36
21  
Another one difference: queries with "native" datetime will not be cached, but queries with timestamp - will be. – OZ_ Apr 28 '11 at 17:37
1  
"Timestamps in MySQL generally used to track changes to records" Do not think that's a good answer. Timestamp are a lot more powerful and complicated than that as MattBianco and Nir sayd. Although, the second part of the answer is very good. It's true what blivet said, and is a good advise. – santiagobasulto May 16 '11 at 14:00
1  
"and are updated every time the record is changed" Is this true? Timestamp fields are automatically updated to the current time whenever a row is changed? – chaiguy Mar 16 '12 at 16:42
1  
in response to @zeusakm, there is a limitation that only one timestamp column per table can have default current_timestamp setting. – BinaryNights Nov 2 '12 at 4:43
show 5 more comments

In MYSQL 5 and above, TIMESTAMP values are converted from the current time zone to UTC for storage, and converted back from UTC to the current time zone for retrieval. (This occurs only for the TIMESTAMP data type, and not for other types such as DATETIME.)

By default, the current time zone for each connection is the server's time. The time zone can be set on a per-connection basis, as described here: MySQL Server Time Zone Support

share|improve this answer
very interesting thanks for your answer – jothetomato Mar 2 '09 at 17:31
23  
+1 newer knew that – NikiC Feb 1 '11 at 13:56
5  
+1 This is very important information in addition to accepted answer. – Ozair Kafray Jul 19 '12 at 5:09

I always use DATETIME fields for anything other than row metadata (date created or modified).

As mentioned in the MySQL documentation:

The DATETIME type is used when you need values that contain both date and time information. MySQL retrieves and displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'.

...

The TIMESTAMP data type has a range of '1970-01-01 00:00:01' UTC to '2038-01-09 03:14:07' UTC. It has varying properties, depending on the MySQL version and the SQL mode the server is running in.

You're quite likely to hit the lower limit on TIMESTAMPs in general use -- e.g. storing birthdate.

share|improve this answer
excellent observation. – capfu Jun 19 '11 at 20:03
37  
+1 for birthdays – Mr Coder Oct 23 '11 at 12:25
Thank you for answer, especially for the link to official documentation. – furikuretsu Mar 26 '12 at 17:10
17  
you can also hit the upper limit easily if you are in banking or real estate... 30-year mortgages go beyond 2038 now – Kip Aug 10 '12 at 14:47
mysql> show variables like '%time_zone%';
+------------------+---------------------+
| Variable_name    | Value               |
+------------------+---------------------+
| system_time_zone | India Standard Time |
| time_zone        | Asia/Calcutta       |
+------------------+---------------------+

mysql> create table datedemo(
    -> mydatetime datetime,
    -> mytimestamp timestamp
    -> );

mysql> insert into datedemo values ((now()),(now()));

mysql> select * from datedemo;
+---------------------+---------------------+
| mydatetime          | mytimestamp         |
+---------------------+---------------------+
| 2011-08-21 14:11:09 | 2011-08-21 14:11:09 |
+---------------------+---------------------+

mysql> set time_zone="america/new_york";

mysql> select * from datedemo;
+---------------------+---------------------+
| mydatetime          | mytimestamp         |
+---------------------+---------------------+
| 2011-08-21 14:11:09 | 2011-08-21 04:41:09 |
+---------------------+---------------------+

The above examples shows that how TIMESTAMP date type changed the values after changing the time-zone to 'america/new_york' where DATETIMEis unchanged.

I've converted my answer into article so more people can find this useful.

http://www.tech-recipes.com/rx/22599/mysql-datetime-vs-timestamp-data-type/

share|improve this answer
3  
Well articulated! Exactly what I was trying to say except in a language we can all understand :) – ekerner Aug 4 '12 at 16:14
2  
Dear @Downvoter care to comment? – V... I... Sep 21 '12 at 4:38
1  
nice explanation.Thanks – pinku Dec 28 '12 at 6:21

The main difference is that DATETIME is constant while TIMESTAMP is affected by the time_zone setting.

So it only matters when you have — or may in the future have — synchronized clusters across time zones.

In simpler words: If I have a database in Australia, and take a dump of that database to synchronize/populate a database in America, then the TIMESTAMP would update to reflect the real time of the event in the new time zone, while DATETIME would still reflect the time of the event in the au time zone.

A great example of DATETIME being used where TIMESTAMP should have been used is in Facebook, where their servers are never quite sure what time stuff happened across time zones. Once I was having a conversation in which the time said I was replying to messages before the message was actually sent. (This, of course, could also have been caused by bad time zone translation in the messaging software if the times were being posted rather than synchronized.)

share|improve this answer
4  
+1 on the explanation. -1 on the grammar. LOL – cbmeeks Mar 28 '11 at 14:54
8  
I don't think this is a good way of thinking. I'd just store and process all the dates in UTC and make sure that the front-end displays it according to the given time-zone. This approach is simple and predictable. – Kos Mar 3 '12 at 10:51

I make this decision on a semantic base.

I use a timestamp when I need to record a (more or less) fixed point in time. For example when a record was inserted into the database or when some user action took place.

I use a datetime field when the date/time can be set and changed arbitrarily. For example when a user can save later change appointments.

share|improve this answer
2  
This is an excellent distinction – Deebster Dec 15 '11 at 14:12

TIMESTAMP is 4 bytes Vs 8 bytes for DATETIME.

http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html

But like scronide said it does have a lower limit of the year 1970. It's great for anything that might happen in the future though ;)

share|improve this answer
62  
The future ends at 2038-01-19 03:14:07 UTC. – MattBianco Sep 1 '10 at 14:39
Thank you for the link. Good to know the storage size – Antony Jun 24 '11 at 19:08
1  
That's stupid. I thought TIMESTAMP type would be "future ready" because it's relatively new. You can't bother converting datetime to UTC and back every time when you work with different time zones. They should have made TIMESTAMP bigger .. at least 1 byte bigger. it'll add 68*255 = 17340 more years ... although it won't be 32 bit aligned. – NickSoft Mar 27 '12 at 9:55
2  
@MattBianco it depends if 2012 is true. – We are the World Jun 11 '12 at 12:02

Depends on application, really.

Consider setting a timestamp by a user to a server in New York, for an appointment in Sanghai. Now when the user connects in Sanghai, he accesses the same appointment timestamp from a mirrored server in Tokyo. He will see the appointment in Tokyo time, offset from the original New York time.

So for values that represent user time like an appointment or a schedule, datetime is better. It allows the user to control the exact date and time desired, regardless of the server settings. The set time is the set time, not affected by the server's time zone, the user's time zone, or by changes in the way daylight savings time is calculated (yes it does change).

On the other hand, for values that represent system time like payment transactions, table modifications or logging, always use timestamps. The system will not be affected by moving the server to another time zone, or when comparing between servers in different timezones.

Timestamps are also lighter on the database and indexed faster.

share|improve this answer

A timestamp field is a special case of the datetime field. You can create timestamp columns to have special properties; it can be set to update itself on either create and/or update.

In "bigger" database terms, tiemstamp has a couple of special-case triggers on it.

What the right one is depends entirely on what you want to do.

share|improve this answer

TIMESTAMP is always in UTC (i.e. elapsed seconds since 1970-01-01, in UTC), and your mySQL server auto-converts it to the date/time for the server timezone. In the long-term, TIMESTAMP is the way to go b/c you know your temporal data will always be in UTC. E.G. you won't screw your dates up if you migrate to a different server or if you change the timezone settings on your server.

share|improve this answer

I would always use a unix timestamp when working with MySQL and PHP. The main reason for this being the the default date method in php uses a timestamp as the parameter so there would be no parsing needed.

To get the current unix timestamp in php just do time(); and in MySQL do SELECT UNIX_TIMESTAMP();

share|improve this answer
2  
-1 I actually think the answer below is better - using datetime allows you to push more logic for date processing into MySQL itself, which can be very useful. – Toby Hede Jan 4 '09 at 5:00
Haven't there been benchmarks showing that sorting in MySQL is slower than in php? – sdkfasldf May 17 '10 at 13:59
well it depends, sometimes it good to use it when we like to not use strtotime. ( php5.3 dep ) – Adam Ramadhan Sep 2 '10 at 5:59

Not sure if this has been mentioned already, but worth noting in MySQL you can use something along the lines of below when creating your table columns

on update CURRENT_TIMESTAMP

This will update the time each instance you modify a row, sometimes very helpful for stored last edit info. This only works with timestamp, not datetime however.

share|improve this answer

I always use a UNIX timestamp, simply to maintain sanity when dealing with a lot of datetime info, especially when performing adjustments for timezones, adding/subtracting dates, and the like. When comparing timestamps, this excludes the complicating factors of timezone and allows you to spare resources in your server side processing (Whether it be application code or database queries) in that you make use of light weight arithmetic rather then heavier date-time add/subtract functions.

share|improve this answer

From my experiences If you want a date field in which insertion happens only once and u don't want o have update or any other action on that particular field go with date time .

For example in a user table REGISTRATION DATE filed.

In that user table if u want to know the last logged in time of a particular user go with a filed of timestamp type let that filed updated with a trigger.

share|improve this answer

I prefer using timestamp so to keep everything in one common raw format and format the data in PHP code or in your SQL query. There are instances where it comes in handy in your code to keep everything in plain seconds.

share|improve this answer

I'm not sure it it's already been answered, but I found unsurpassed usefulness in TIMESTAMP's ability to auto update itself based on the current time without the use of unnecessary triggers. That's just me though, although TIMESTAMP is UTC like it was said, it can keep track across different timezones, so if you need to display a relative time for instance, UTC time is what you would want.

share|improve this answer

I like UNIX timestamp, because you can convert to numbers and just worry about the number. Plus you add/subtract and get durations etc. Then convert the result to Date in whatever format. This code finds out how much time in minutes passed between a timestamp from a document, and the current time.

$date  = $item['pubdate']; (etc ...)
$unix_now = time();
$result = strtotime($date, $unix_now);  
$unix_diff_min = (($unix_now  - $result) / 60);
$min = round($unix_diff_min);
share|improve this answer
Or, use a human readeable and native MySQL datetime, and use native MySQL functions to add / substract datetimes. – Julien Palard Apr 25 at 10:01

Timestamp data type stores date and time but in UTC format, not in current zone format as datetime do. And when you fetch data, timestamp again convert that into current zone time. So suppose you are in USA and getting data from server which has time zone of USA, then you will get the date and time according to USA time zone. Timestamp data type column always get updated automatically when its row gets updated. So it can be useful to track when a particular row was updated last time.

For more details you can read following blog: http://codebucket.co.in/timestamp-vs-datetime/

share|improve this answer

protected by user414076 Jan 5 '12 at 4:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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