如 我们需要将use_time 赋值为当前时间:
准备三条数据 :
执行sql ,2种当前时间赋值函数,1种关键字赋值 :
update test_info SET use_time=NOW() WHERE id =1;
update test_info SET use_time=CURRENT_TIMESTAMP() WHERE id =2;
update test_info SET use_time=CURRENT_TIMESTAMP WHERE id =3;
可以看到赋值成功 :