Bootstrap

sql修改某一列字段为当前日期

update tbl表名 SET 日期字段=now()
//now() 当前时间
//条件
// where 日期字段 is null

;