"景先生毕设|www.jxszl.com

删除表之前的临时备份(select into from,create table

2023-09-12 15:40编辑: www.jxszl.com景先生毕设
                          删除表之前的临时备份
  sql Server
 --  将表1 的  数据 插入到表2(不存在的表)
   select * into table1 from   table2 ;
  
 Oracle 
    --  将表1 的  数据 插入到表2(不存在的表)
   create table1 as select *  from   table2 ;
原文链接:http://www.jxszl.com/biancheng/shujuku/445439.html