create table actor_name(
first_name varchar(45) not null,
last_name varchar(45) not null
);
insert into actor_name values
('PENELOPE','GUINESS'),('NICK','WAHLBERG');