第一步,先用create table创建表格actor_name
create table actor_name(
    first_name varchar(45) not null,
    last_name  varchar(45) not null
);
第二步,将actor表格中的数据对应插入actor_name的对应字段
insert into actor_name (first_name,last_name)
values('PENELOPE','GUINESS'),
    ('NICK','WAHLBERG');