当前位置: 代码迷 >> Oracle面试 >> oracle 表 添加数据,该怎么处理
  详细解决方案

oracle 表 添加数据,该怎么处理

热度:3912   发布时间:2013-02-26 00:00:00.0
oracle 表 添加数据
比如我要把a表中的数据全部复制到b表中,b表不提前创建


create table b select * from a;

------解决方案--------------------------------------------------------
SQL code
create table b as select * from a;
  相关解决方案