create table If not exists actor_name(
first_name varchar(45) not null,
last_name varchar(45) not null);
insert into actor_name
value('PENELOPE','GUINESS'),
('NICK','WAHLBERG');
或
create table if not exists actor_name as
select first_name,last_name
from actor