当前位置: 代码迷 >> Oracle管理 >> 创建新表,该怎么解决
  详细解决方案

创建新表,该怎么解决

热度:85   发布时间:2016-04-24 05:25:29.0
创建新表
主要是通过创建新表的方式,把查询语句出来的内容放在一个新的表中。

创建新表
create table T_Corp

查询语句
select * from Sys_corp

那 位大侠帮帮忙。

------解决方案--------------------
SQL code
insert into Sys_corp select * from T_Corp;
------解决方案--------------------
SQL code
create table T_Corpasselect * from Sys_corp
------解决方案--------------------
SQL code
create table T_Corpasselect * from Sys_corp
------解决方案--------------------
create table T_Corp
as
select * from Sys_corp
  相关解决方案