I currently have the date format 2016-11-23 16:47:21.007
and I am trying to convert it with this SQL:
update user_table set login_date = CONVERT(datetime,login_date,120)
So that I only get 2016-11-23 16:47:21
but it's currently just staying as the same format.
Am I missing something?