有A表时
insert into A select * from B;
没有A表时
create table A as select * from B;
没有A表且B表为另一个用户C时
create table A as select * from C.B;
本文详细介绍了在数据库中使用SQL进行表操作的方法,包括插入数据、创建表以及跨用户表的操作。
有A表时
insert into A select * from B;
没有A表时
create table A as select * from B;
没有A表且B表为另一个用户C时
create table A as select * from C.B;
2703

被折叠的 条评论
为什么被折叠?