原来没有的创建的表
select * into 表A form 表B where条件
原来存在的表
insert into 表A select * from 表B where 条件~
insert into B select A.username,C.deviceNo,a.companyNo from A,C where A.username='username' and c.devicecode='devicecode'
其中username 和 devicecode 是你输入的数据
INSERT INTO B (SELECT A.username ,C.deviceCodeFROM A,C)