where BuyList.Bno=@Bno and Items.Ino=BuyList.Ino
--查询审核状态
删除未通过采购单存储过程:
create procedure Delete_NBL @Bno varchar(10)
as
delete from BuyList
where Bno=@Bno and BLYN='不通过'
--删除未通过采购单
人员查询存储过程:
create procedure Q_WHM @WMno varchar(10) as
select WMno,WMName,WMSex,WMAge,WMTel,WMDate from WHManager
where WMno=@WMno
--查询仓库管理员
create procedure QA_WHM
as
select WMno,WMName,WMSex,WMAge,WMTel,WMDate
from WHManager