发布网友 发布时间:2022-04-24 20:34
共2个回答
热心网友 时间:2023-10-10 02:34
2中思路
第一种 查询出2个表里数据一致的 然后 不在第二个表里的数据
select*from b
where 身份证号 not in
(select 身份证号 from a,b
where a.身份证号=b.身份证号)
数据多的话速度会很慢
第二种 已表2为主表进行左关联,然后表1里字段为空的就是不一致的数据
select * from (select b.*,a.身份证号 as '标示' from b left join a on a.身份证号=b.身份证号) a
where 标示 is not null
热心网友 时间:2023-10-10 02:34
要多少费用