如何查询未在BOM中使用过的物料
2人赞赏了该文章
1,953次浏览
编辑于2014年05月06日 10:17:14
关于未在BOM中使用物料的查询可以通过以下语句操作:
select * from t_Item a where not exists
(select fitemid from ICBOM b where b.fitemid=a.FItemID
union all select fitemid from ICBOMChild c where c.FItemID=a.FItemID)
select * from t_Item a where not exists
(select fitemid from ICBOM b where b.fitemid=a.FItemID
union all select fitemid from ICBOMChild c where c.FItemID=a.FItemID)
推荐阅读