在Oracle和sql server中,如何从一个已知的旧表,来复制新生成一个新的表,如果要复制旧表结构和表数据,对应的sql语句该如何写呢?刚好阿堂这两天用到了,就顺便把它收集汇总一下,供朋友们参考一下了! sql server中复制表结构和表数据的sql语句的写法,分别如下1.复制表的内容到一新表 select * into 新表名 from 原表名 2.复制表的结构到一新表 select * into 新表名 from 原表名 wh…
1. 复制表结构及其数据: create table table_name_new as select * from table_name_old 2. 只复制表结构: create table table_name_new as select * from table_name_old where 1=2; 或者: create table table_name_new like table_name_old 3. 只复制表数据: 如果两个表结构一样: insert into table_na…
创建测试表和测试数据 create table test (id number,name varchar(10)); insert into test values(1,'liufang'); insert into test values(2,'xiaozhang'); insert into test values(3,'dawei'); insert into test values(4,'laotan'); insert into test values(5,'la…
一.复制表结构及其数据 create table new_table as (select * from old_table); 二.只复制表结构 create table new_table as (select * from old_table where 1=2); 三.只复制表数据 如果两个表结构一样: insert into new_table select * from old_table; 如果两个表结构不一样: insert into new_table(column1,colu…
1. 复制表结构及其数据: create table table_name_new as select * from table_name_old 2. 只复制表结构: create table table_name_new as select * from table_name_old where 1=2; 或者: create table table_name_new like table_name_old 3. 只复制表数据: 如果两个表结构一样: insert into table_na…
1. 复制表结构及其数据: create table table_name_new as select * from table_name_old 2. 只复制表结构: create table table_name_new as select * from table_name_old where 1=2; 或者: create table table_name_new like table_name_old 3. 只复制表数据: 如果两个表结构一样: insert into table_na…