I know when you insert a value into db, it set that column value as current datetime, does it apply to it when you run a update statement?
e.g.
table schema:
Id, Name, CreatedDate(getdate())
when i insert into table id = 1 , name = 'john'
it will set createdDate = current date
if i run an update statement
update table set name="john2" where id =1
Will it update the createdDate
?