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.

link|improve this question

feedback

17 Answers

up vote 186 down vote accepted

Timestamps in MySQL generally used to track changes to records, and are 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.

link|improve this answer
84  
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
3  
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
"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 at 16:42
feedback

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

link|improve this answer
very interesting thanks for your answer – m_oLogin Mar 2 '09 at 17:31
12  
+1 newer knew that – NikiC Feb 1 '11 at 13:56
feedback

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 birthdays.

link|improve this answer
excellent observation. – capfu Jun 19 '11 at 20:03
11  
+1 for birthdays – beginner Oct 23 '11 at 12:25
Thank you for answer, especially for the link to official documentation. – furikuretsu Mar 26 at 17:10
feedback

The main difference is that DATETIME is constant while TIMESTAMP is effected 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.

link|improve this answer
2  
+1 on the explanation. -1 on the grammar. LOL – cbmeeks Mar 28 '11 at 14:54
this is helpful. – Viswanathan Iyer Aug 21 '11 at 8:28
1  
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 at 10:51
feedback

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.

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

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 ;)

link|improve this answer
33  
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
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 at 9:55
feedback
mysql> show variables like '%time_zone%';
+------------------+---------------------+
| Variable_name    | Value               |
+------------------+---------------------+
| system_time_zone | India Standard Time |
| time_zone        | Asia/Calcutta       |
+------------------+---------------------+
2 rows in set (0.00 sec)

mysql> create table datedemo(
    -> mydatetime datetime,
    -> mytimestamp timestamp
    -> );
Query OK, 0 rows affected (0.05 sec)

mysql> insert into datedemo values ((now()),(now()));
Query OK, 1 row affected (0.02 sec)

mysql> select * from datedemo;
+---------------------+---------------------+
| mydatetime          | mytimestamp         |
+---------------------+---------------------+
| 2011-08-21 14:11:09 | 2011-08-21 14:11:09 |
+---------------------+---------------------+
1 row in set (0.00 sec)

mysql> set time_zone="america/new_york";
Query OK, 0 rows affected (0.00 sec)

mysql> select * from datedemo;
+---------------------+---------------------+
| mydatetime          | mytimestamp         |
+---------------------+---------------------+
| 2011-08-21 14:11:09 | 2011-08-21 04:41:09 |
+---------------------+---------------------+
1 row in set (0.00 sec)

The above examples shows that how TIMESTAMP date type changed the values after changing the time-zone to 'america/new_work' 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/

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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();

link|improve this answer
1  
-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
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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);
link|improve this answer
feedback

protected by Anthony Pegram Jan 5 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.