Hi, I have a simple SQL queries, and I do not understand why there are some time-partion values of datetime-typed column "Dates" do not match with what I expect in INSERT statements.Thank you for your help.declare @t table (clientid int, Unitbalance numeric(21,0), Dates datetime)insert into @t values (123, 999, '1 jan 2008 12:00:01:001')insert into @t values (456, 888, '1 jan 2008 12:00:01:006')insert into @t values (456, 777, '1 jan 2008 12:00:01:007')insert into @t values (789, 222, '1 jan 2008 12:00:01:008')insert into @t values (789, 333, '1 jan 2008 12:00:01:009')insert into @t values (123, 999, '1 jan 2008 12:00:01:010')insert into @t values (123, 111, '1 jan 2008 12:00:01:011')-- workselect * from @t
And there are some time-portion values in the datetime-typed "Dates" column do not match with previpusly input using INSERT clientid Unitbalance Dates ----------- ----------------------- ------------------------------------------------------ 123 999 2008-01-01 12:00:01.000456 888 2008-01-01 12:00:01.007456 777 2008-01-01 12:00:01.007789 222 2008-01-01 12:00:01.007789 333 2008-01-01 12:00:01.010123 999 2008-01-01 12:00:01.010123 111 2008-01-01 12:00:01.010