(SQL2005)
表1,有以下3列: ID1 、NUM1、 CITY
表2,有以下2列: ID2 、NUM2
现在想将表1中 CITY = 北京 的列数据依次增加到表2中 令表2中的 ID2对应等于ID1 、NUM2对应等于NUM1 ,
请问SQL语句怎样写?
------解决方案--------------------
- SQL code
insert into t2(id2,num2) select id1,num1 from t1 where t1.city = '北京'
insert into t2(id2,num2) select id1,num1 from t1 where t1.city = '北京'