码迷,mamicode.com
首页 > 其他好文 > 详细

商品单位关系与删除缺货登记

时间:2015-01-20 18:39:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:时空

--/*******采购入库登记单位商品关系

if @djlxbs=‘116‘
   begin
     create table #t_dwsp (
      dwbh      char(11) null default ‘‘,
      spid      char(11) null default ‘‘,
         spid1     char(11) null default ‘‘
     )
    insert into #t_dwsp(dwbh,spid,spid1)
    select @dwbh,a.spid,isnull(b.spid,‘@#$%^&*@#$%‘) as spid1 from #t_djmx a 
    left join wyf_dwspgx b(nolock) on a.spid=b.spid and b.dwbh=@dwbh
    
    insert into wyf_dwspgx(dwbh,spid) select dwbh,spid from #t_dwsp where spid1=‘@#$%^&*@#$%‘
    
    drop table #t_dwsp
    --删除缺货登记
     insert into xsqhdj_his(rq,spid,shl,dwbh,username,beizhu) select rq,spid,shl,dwbh,username,beizhu from xsqhdj where spid in(select distinct spid from #t_djmx)
    delete from xsqhdj where spid in(select distinct spid from #t_djmx)
   end


商品单位关系与删除缺货登记

标签:时空

原文地址:http://bks2015.blog.51cto.com/9847303/1606039

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!