I have a field called NotifTime in a table whose data type is "DateTime". I don't want to insert any date in this but only Time. So, when I give the SQL as
Insert into <TableName> Values('10:10')
It inserts the value as 1/1/1900 10:10:00 AM
Is it possible to insert only the time part.
Please help.
Insert into <TableName> Values('10:10')
It inserts the value as 1/1/1900 10:10:00 AM
Is it possible to insert only the time part.
Please help.