Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL date or PHP time?

Tags:

php

mysql

I usually store dates as integers using PHP's time() function in a MySQL database rather than using MySQL's date format simply because it's easier to manipulate when I pull it back out, but are there any disadvantages to this?

like image 561
mpen Avatar asked Jun 10 '09 20:06

mpen


People also ask

Which is better TIMESTAMP or datetime MySQL?

TIMESTAMP is four bytes vs eight bytes for DATETIME . Timestamps are also lighter on the database and indexed faster. 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.

What is the correct datetime format for MySQL?

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 is used for values that contain both date and time parts. TIMESTAMP has a range of '1970-01-01 00:00:01' UTC to '2038-01-19 03:14:07' UTC.

What function finds the current time or date in MySQL?

MySQL NOW() Function The NOW() function returns the current date and time. Note: The date and time is returned as "YYYY-MM-DD HH-MM-SS" (string) or as YYYYMMDDHHMMSS.

Is there a time data type for MySQL?

Introduction to MySQL TIME data typeMySQL uses the 'HH:MM:SS' format for querying and displaying a time value that represents a time of day, which is within 24 hours. To represent a time interval between two events, MySQL uses the 'HHH:MM:SS' format, which is larger than 24 hours.


2 Answers

Range:

There's always the obvious disadvantage: The range that you can store is limited från 1970 to 2038. If you need to store dates outside of this range, you'll generally need to use another format. The most common case I've found where this apply is to birthdates.

Readability:

I think that the most important reason that people chose to use one of the built-in date-types it that the data is easier to interpret. You can do a simple select, and understand the values without having to format the response further.

Indexes:

A good technical reason to use the date types is that it allows for indexed query in some cases that unix timestamps doesn't. Consider the following query:

SELECT * FROM tbl WHERE year(mydate_field) = 2009;

If mydate_field is of a native date type, and there's an index on the field, this query will actually use an index, despite the function call. This is pretty much the only time that mysql can optimize function calls on fields like this. The corresponding query on a timestamp field won't be able to use indices:

SELECT * FROM tbl WHERE year(from_unixtime(mytimestamp_field)) = 2009;

If you think about it for a bit, there's a way around it, though. This query does the same thing, and will be able to use index optimizations:

SELECT * FROM tbl WHERE mytimestamp_field > unix_timestamp("2009-01-01") AND mytimestamp_field < unix_timestamp("2010-01-01");

Calculations:

Generally, I store dates as unix time, despite the disadvantages. This isn't really based on it's merits, but rather it's because I'm used to it. I've found that this simplifies some calculations, but complicate others. For example, it's very hard to add a month to a unix timestamp since the number of seconds per month varies. This is very easy using the mysql DATE_ADD() function. However, I think that in most cases it actually simplifies calculations. For example, it's quite common that you want to select the posts from, say, the last two days. If the field contains a unix timestamp this can be done easily by simply doing:

SELECT * FROM tbl WHERE mytimestamp_field > time() - 2*24*3600;

It's probably a matter of taste, but I personally find this faster and easier than having to rember the syntax of a function such as DATE_SUB().

Timezones:

Unix timestamps can't store time zone data. I live in sweden which has a single timezone, so this isn't really a problem for me. However, it can be a major pain if you live in a country that spans multiple timezones.

like image 105
Emil H Avatar answered Sep 20 '22 12:09

Emil H


One disadvantage is that you won't be able to manipulate and query those dates using SQL functions.

like image 42
amarillion Avatar answered Sep 22 '22 12:09

amarillion