What is the preferred format to store date/times in a SQL Server database when PHP is your primary language? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:15:17Zhttp://stackoverflow.com/feeds/question/227428http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph2What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Joe Lencioni2008-10-22T20:31:21Z2008-10-26T01:50:03Z
<p>I am planning a PHP application that needs to store date/times in an MSSQL database. (For the curious, it is a calendar application.) What is the preferred format to store this information?</p>
<p>MSSQL has its own datetime data type, which works well in the database itself and is very readable. However, there aren't any MSSQL functions to translate datetime values to PHP's preferred format--UNIX timestamp. This makes it a bit more painful to use with PHP. UNIX timestamp is attractive because that's what PHP likes, but it's certainly not as readable and there aren't a bunch of nice built-in MSSQL functions for working with the data.</p>
<p>Would you store this information as datetime data type, as UNIX timestamps (as int, bigint, or varchar datatype), as both formats side by side, or as something else entirely?</p>
http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph/227451#2274511Answer by Kris for What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Kris2008-10-22T20:36:44Z2008-10-22T20:48:49Z<p>I'd recommend the same as i do for all dates in any db engine, the db native type. (DATETIME)</p>
<p>Just use "YYYY-MM-DD HH:MM:SS" for inserting in php: <code>date('Y-m-d H:i:s', $myTimeStampInSeconds);</code></p>
<p>-edit in response to comments below here -</p>
<ol>
<li>for selected columns you can use <code>$timestamp = <a href="http://www.php.net/strtotime" rel="nofollow">strtotime</a>( $yourColumnValue );</code></li>
<li>i recommend storing in the databas native format because you can then use SQL to compare records using SQL date/time functions like DATEADD() etc.</li>
</ol>
http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph/227501#2275010Answer by Vincent Ramdhanie for What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Vincent Ramdhanie2008-10-22T20:50:34Z2008-10-22T20:50:34Z<p><a href="http://www.phpbuilder.com/board/showthread.php?t=10339782" rel="nofollow">This</a> might help. Or <a href="http://forums.springheadmedia.com/PHPexamples/viewtopic.php?t=46" rel="nofollow">this</a>.</p>
<p>Simply let the database store the date in its datetime format and you convert it when you need to. </p>
http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph/227508#2275085Answer by Adam N for What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?Adam N2008-10-22T20:51:57Z2008-10-22T20:57:07Z<p>I would store the dates in the MS-SQL format to assist in using the date manipulation functions in T-SQL to their fullest. It's easier to write and read</p>
<pre><code>SELECT * FROM Foo
WHERE DateDiff(d,field1,now()) < 1
</code></pre>
<p>Than to try and perform the equivalent operation by manipulating integers</p>
<p>To convert a MsSQL date into a unix timestamp use dateDiff:</p>
<pre><code>SELECT DATEDIFF(s,'1970-01-01 00:00:00',fieldName) as fieldNameTS
FROM TableName
WHERE fieldName between '10/1/2008' and '10/31/2008'
</code></pre>
<p>To Convert an Unix Timestamp into a MsSQL Date, you can either do it in PHP:</p>
<pre><code>$msSQLDate = date("Y-m-d H:i:s", $unixDate );
</code></pre>
<p>or in MsSQL</p>
<pre><code>INSERT INTO TableName (
fieldName
) VALUES (
DATEADD(s,'1970-01-01 00:00:00', ? )
)
</code></pre>
<p>Where parameter one is int($unixDate)</p>
http://stackoverflow.com/questions/227428/what-is-the-preferred-format-to-store-date-times-in-a-sql-server-database-when-ph/229308#2293080Answer by yeradis for What is the preferred format to store date/times in a SQL Server database when PHP is your primary language?yeradis2008-10-23T10:52:18Z2008-10-23T10:52:18Z<p>Hello and good day for everyone</p>
<p>Yes , might be thats the best way , store dates in db, they will take db format and you can format when you need as you wich</p>
<p>But there is another one solution in the ISO-developed international date format, i mean ISO 8601.</p>
<p>The international format defined by ISO (ISO 8601) tries to address all date problems by defining a numerical date system as follows: YYYY-MM-DD where</p>
<p>YYYY is the year [all the digits, i.e. 2100]
MM is the month [01 (January) to 12 (December)]
DD is the day [01 to 31] depending on moths :P</p>
<p>Using numerical dates does have also some pitfalls with regard to readability and usability it is not perfect.But ISO date format is, however, the best choice for a date representation that is universally (and accurately) understandable.</p>
<p>Note that this format can also be used to represent precise date and time, with timezone information</p>
<p>Here is a detailed information about ISO 8601:2000 </p>
<p><a href="http://www.iso.org/iso/support/faqs/faqs_widely_used_standards/widely_used_standards_other/date_and_time_format.htm" rel="nofollow">http://www.iso.org/iso/support/faqs/faqs_widely_used_standards/widely_used_standards_other/date_and_time_format.htm</a></p>
<p>With no more....
Bye bye</p>