日期:2014-05-17 浏览次数:20479 次
--添加一张空白的新表 select * into test from table where 1 = 2 /*复制一个表结构*/ --将现有表中数据添加到已存的表中 insert into [已存的表] select * from [现有表] /*需要注意字段 一一对应*/ --将现有表中的数据添加到新表中 select * into test from table /*将现有的表 添加到新表 test 里*/
------解决方案--------------------
--创建新表 create table tab(id int, col varchar,...) --将表中数据添加到表中 select col1,col2 into tab_new from tab_old where ...
------解决方案--------------------
SQL code
--添加一张空白的新表
select * into test from table where 1 = 2 /*复制一个表结构*/
这个where 1=2 是什么意思呢?
1=2就是表示没有一条记录是符合条件的,所以新表中没有一条数据而只有表结构
--将现有表中数据添加到已存的表中
insert into [已存的表]
select * from [现有表] /*需要注意字段 一一对应*/
现有表对应已存表的字段名字那些都要一样吗?
是的两张表的字段名字都是一样的