题解 | #使用join查询方式找出没有分类的电影id以及名称#
创建一个actor_name表
http://www.nowcoder.com/practice/881385f388cf4fe98b2ed9f8897846df
CREATE table actor_name (
first_name varchar(45) not null comment '名字',
last_name varchar(45) not null comment '姓氏')
select a.first_name,a.last_name from actor a;
first_name varchar(45) not null comment '名字',
last_name varchar(45) not null comment '姓氏')
select a.first_name,a.last_name from actor a;