日期:2014-05-18 浏览次数:20615 次
1, select * from SBKCJL where DH not in(select DH from SBCRKBH)
------解决方案--------------------
2, delete from SBKCJL where DH not in(select DH from SBCRKBH)
------解决方案--------------------
select *
from SBKCJL
where DH not in(select DH from SBCRKBH)
delete
from SBKCJL
where DH not in(select DH from SBCRKBH)
------解决方案--------------------
select *
from SBKCJL
where DH not in(select DH from SBCRKBH)
delete
from SBKCJL
where DH not in(select DH from SBCRKBH)
------解决方案--------------------
select * from SBKCJL where DH not in(select DH from SBCRKBH) delete from SBKCJL where DH not in(select DH from SBCRKBH)
------解决方案--------------------
一、查询出 DH 在 SBKCJL 中存在,而 SBCRKBH 中没有的记录
select t.* from SBKCJL t where not exists (select 1 from SBCRKBH n where n.dh = t.dh)
select t.* from SBKCJL t where dh not in (select dh from SBCRKBH)
二、删除 SBKCJL 的记录,条件是:DH 在 SBKCJL 中存在,而 SBCRKBH 中没有
delete SBKCJL from SBKCJL t where not exists (select 1 from SBCRKBH n where n.dh = t.dh)
delete SBKCJL from SBKCJL t where dh not in (select dh from SBCRKBH)
------解决方案--------------------
1、select *
from SBKCJL
where DH not in(select DH from SBCRKBH)
2、delete
from SBKCJL
where DH not in(select DH from SBCRKBH)
------解决方案--------------------
--一、查询出 DH 在 SBKCJL 中存在,而 SBCRKBH 中没有的记录 --二、删除 SBKCJL 的记录,条件是:DH 在 SBKCJL 中存在,而 SBCRKBH 中没有 --1. SELECT * FROM SBKCJL AS a WHERE NOT EXISTS(SELECT 1 FROM SBCRKBH AS x WHERE x.DH=a.DH) --2. DELETE a FROM SBKCJL AS a WHERE NOT EXISTS(SELECT 1 FROM SBCRKBH AS x WHERE x.DH=a.DH)