主要是通过创建新表的方式,把查询语句出来的内容放在一个新的表中。
创建新表
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