本题考察取当前表的一部分数据创建新表 create table 表名 as (select 字段名, .... from 当前表名)
create table actor_name as select first_name,last_name from actor;