急求一SQL语句,OR 一解决方案,已知条件,求..... 详细如内容!
已知 表A,表B
A 表记录为 B表为
字段 A 字段AA 字段A 字段BB
A A1 A B1
A A2 A B2
A AN A BN
. . . .
. . . .
求.如下表
生成的表为 :tableAB
字段A 字段AA 字段BB
A A1 B1
A A2 B2
A AN BN
------解决方案--------------------select id=identity(int,1,1) , * into a1 from a
select id=identity(int,1,1) , * into b1 from b
select a1.a,a1.aa,b1.bb from a1,b1 where a1.id = b1.id