题解 | #创建一个actor_name表#
创建一个actor_name表
http://www.nowcoder.com/practice/881385f388cf4fe98b2ed9f8897846df
-
本题解析
本题主要考察快速建表并插入数据 -
参考答案
create table if not EXISTS actor_name
select first_name,last_name from actor;
创建一个actor_name表
http://www.nowcoder.com/practice/881385f388cf4fe98b2ed9f8897846df
本题解析
本题主要考察快速建表并插入数据
参考答案
create table if not EXISTS actor_name
select first_name,last_name from actor;
相关推荐
查看30道真题和解析