查询一张表的字段新增另一张表的数据

2024-11-16 11:21:44
推荐回答(3个)
回答1:

原来没有的创建的表
select * into 表A form 表B where条件
原来存在的表
insert into 表A select * from 表B where 条件~

回答2:

insert into B select A.username,C.deviceNo,a.companyNo from A,C where A.username='username' and c.devicecode='devicecode'
其中username 和 devicecode 是你输入的数据

回答3:

INSERT INTO B (SELECT A.username ,C.deviceCodeFROM A,C)