正在加载中...
信息详页
返回sqlserver复制表数据到另一个表 SQL Server中,如果目标表存在: insert into 目标表 select * from 原表; SQL Server中,,如果目标表不存在: select * into 目标表 from 原表; Oracle中,如果目标表存在: insert into 目标表 select * from 原表; commit; Oracle中,如果目标表不存在: create table 目标表 as select * from 原表; 假定有一个a表,一个b表,要将a表的数据拷贝到b表中。 1.如果a表和b表结构相同。 insert into b select * from a; 2.如果a表和b表的结构不相同。 insert into b(col1, col2, col3, …) select a.col1, a.col2, a.col3, … from a where …; 3.如果b表不存在。 select * into b from a; select a.col1, a.col2, c.col3, ... into b from a;