This is an example on how to update a Datetime field including Hour, minutes and seconds
update [dbo].[Quote]
set modifiedOn = CONVERT(datetime,'2021-11-11T10:22:59.000',126)
where quoteid in (80635, 80609)
This is an example on how to update a Datetime field including Hour, minutes and seconds
update [dbo].[Quote]
set modifiedOn = CONVERT(datetime,'2021-11-11T10:22:59.000',126)
where quoteid in (80635, 80609)