题解 | #创建一个actor_name表#

创建一个actor_name表

https://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 table if not exists actor_name(
#     first_name  varchar(45)  not null,
#     last_name   varchar(45)  not null
# ); 
# insert into actor_name
# select first_name, last_name
# from actor;




create table if not exists actor_name as (
    select first_name, last_name
    from actor
);

全部评论

相关推荐

LuminousZJ:不行,最后还是要看学信网的,这点不能伪装,也骗不过人家,得不偿失
点赞 评论 收藏
分享
03-17 23:54
黑龙江大学 Java
来个白菜也好啊qaq:可以的,大厂有的缺打手
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务