题解 | 增加列,default语法
在last_update后面新增加一列名字为create_date
https://www.nowcoder.com/practice/119f04716d284cb7a19fba65dd876b03
添加列:alter table add (column可省略) .. default''要加双引号 alter table actor add create_date datetime not null default '2020-10-01 00:00:00';