vote up 16 vote down star
7

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.

flag

That's a seriously good question. – PEZ Jan 3 '09 at 16:22

9 Answers

vote up 19 vote down check

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|flag
vote up 2 vote down

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|flag
-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
vote up 3 vote down

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|flag
vote up 3 vote down

I make this decision on a semantical 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 useraction 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|flag
vote up 4 vote down

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|flag
vote up 0 vote down

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|flag
vote up 2 vote down

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|flag
vote up 8 vote down

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|flag
very interesting thanks for your answer – m_oLogin Mar 2 at 17:31
vote up 1 vote down

timestamp is slower than datetime so i prefered datetime datatime in mysql

www.bageshsingh.com

link|flag

Your Answer

Get an OpenID
or

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