题解 | #创建一个actor_name表#
创建一个actor_name表
http://www.nowcoder.com/practice/881385f388cf4fe98b2ed9f8897846df
create table if not exists actor_name (first_name varchar(45) not null, last_name varchar(45) not null) select first_name,last_name from actor
- 从另一个表格得到的结果,代入所创建的新表中。
- create table2 if not exists xxx() select xx,xxx from table1
查看3道真题和解析
