To store only time from DateTime
into SQL Server 2005. I am using vs.net 2010 and SQL Server 2005
Like this
MyCurrent DataType
id int
EnterDate DateTime
Date string
Time string
// I want to like this STORE [Future out put]
id .... EnterDate Date Time
1 .... 4/11/2011 10:25:00 4/11/2011 10:25:00
2 .... 4/11/2011 10:32:10 4/11/2011 10:32:10
3 .... 4/11/2011 10:41:37 4/11/2011 10:41:37
So how to store only time value and how define datatype in SQL Server?