christer99
IS-IT--Management
- Dec 3, 2001
- 247
When I insert this value 5/22/2007 2:28:04 into a datetime field, the seconds are "missing". Instead of 2:28:04, I end up with 2:28:00 being recorded to the SQL table. Any ideas?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Declare @Temp SmallDateTime
Set @Temp = GetDate()
Select @Temp, GetDate()