The DATE data type in SQL Server 2008 (and later)
One of the new data types originally shipped with SQL Server 2008 is the “DATE” data type. The DATE data type provides only the date without requiring from the database developers to extract the date from the datetime anymore. To this end you can just get the date with a single line of code: SELECT … Read more…