0
点赞
收藏
分享

微信扫一扫

create table as select from和 insert into select from的用法

复制表(含数据): create table table_name2 as select * from table_name1

复制表(不含数据): create table table_name2 as select * from table_name1 where 1=2

只复制表数据:insert into table_name2 select * from table_name1 ​


举报

相关推荐

0 条评论