SQL语句 数据插入
发布网友
发布时间:2022-04-28 13:11
我来回答
共3个回答
热心网友
时间:2022-05-03 18:30
insert into A(hw, spid, pihao)
select hw, spid, pihao from A where not exists(select * from B where hw = A.hw and spid = A.spid and pihao = A.pihao)
如果你的SQL数据库支持except关键字,还可以这样
insert into A(hw, spid, pihao)
select hw, spid, pihao from A
except
select hw, spid, pihao from B
热心网友
时间:2022-05-03 19:48
insrt b(...各个字段....)
select a.相应字段 from a
where not exists ( select 1 from a,b
where a和b 的关联条件)
大体就是这样吧。具体内容自己补充一下。
热心网友
时间:2022-05-03 21:22
insrt b(...各个字段....)
select a.相应字段 from a
where not exists ( select 1 from a,b
where a和b 的关联条件)