题解 | 在last_update后面新增加一列名字为create_date
在last_update后面新增加一列名字为create_date
https://www.nowcoder.com/practice/119f04716d284cb7a19fba65dd876b03
alter table actor add column create_date datetime NOT NULL default '2020-10-01 00:00:00' after last_update
alter table 表名 add column新列名 默认条件 after 列名
