一次編程實踐[ASP+MSSQL]

來源:互聯網
上載者:User
本人工作單位是一家橡塑產品製造企業,05年2月單位領導要求我開發一個生產流程資料核對錶,用來稽核流程資料的準確性,其報表基本原理如下:
後續工序今日正品數 + 後續工序今日廢品數 = 本工序今日正品數 + 本工序今日留存數 - 本工序昨日留存數
瞭解了原理後馬上開工,第一次考慮用暫存資料表:
select distinct LEFT(productid, 4) + '00' as productid into #productid from yuancaiFlow_view
where productiondate = '2004-3-1'
and productid like '01____'
go
select a.productid,
         b.productname,
         isnull(hj.GoodQty, 0) as hj_good,
         isnull(hjtoday.qty, 0) as hj_today,
         isnull(hjyesterday.qty, 0) hj_yesterday,
         isnull(hj.GoodQty, 0) - isnull(hjtoday.qty, 0) + isnull(hjyesterday.qty, 0) - isnull(sx.GoodQty, 0) - isnull(sx.BadQty, 0) as hj_difference,
         isnull(sx.GoodQty, 0) as sx_good,
         isnull(sx.BadQty, 0) as sx_bad,
         isnull(sxtoday.qty, 0) as sx_today,
         isnull(sxyesterday.qty, 0) sx_yesterday,
         isnull(sx.GoodQty, 0) - isnull(sxtoday.qty, 0) + isnull(sxyesterday.qty, 0) - isnull(jt.GoodQty, 0) - isnull(jt.BadQty, 0) as sx_difference,
         isnull(jt.GoodQty, 0) as jt_good,
         isnull(jt.BadQty, 0) as jt_bad,
         isnull(jttoday.qty, 0) as jt_today,
         isnull(jtyesterday.qty, 0) jt_yesterday,
         isnull(jt.GoodQty, 0) - isnull(jttoday.qty, 0) + isnull(jtyesterday.qty, 0) - isnull(ph.GoodQty, 0) - isnull(ph.BadQty, 0) as jt_difference,
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.