题目描述:现在在last_update后面新增加一列名字为create_date, 类型为datetime, NOT NULL,默认值为'2020-10-01 00:00:00'

alter table添加表列的语法:

ALTER TABLE table_name
ADD column_name datatype;

所以这道题的答案:

alter table actor 
add create_date datetime not null default "2020-10-01 00:00:00";