alter table actor add column create_date datetime not null default"2020-10-01 00:00:00" after last_update
在‘last_update’后追加一列,用‘after’指明所要追加的列。
alter table actor add column create_date datetime not null default"2020-10-01 00:00:00" after last_update
在‘last_update’后追加一列,用‘after’指明所要追加的列。