How to Insert Only Date and Only time in the table(column datatype is DateTime) using SQL Server 2005.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
As far as I know, Date and Time are always stored together. The intern representation of it is a number, that represents timeticks that are passed since a certain moment. You can of course filter the date info and the time info out of it and store it as for example a string. Or you can make a userdefined type as shown here : http://weblogs.sqlteam.com/jeffs/archive/2007/10/31/sql-server-2005-date-time-only-data-types.aspx |
|||||
|