轉載自:http://www.czerp.com.cn/page/Default.asp?ID=372數據庫
可經過Excel獲取外部數據的方式與SQL數據庫建立查詢鏈接,並導入到Excel中:編碼
Select a.cWhcode 倉庫編碼,b.cWhName 倉庫名稱,a.cinvcode 存貨編碼,c.cInvName 存貨名稱,a.iquantity 結存數量,a.foutquantity 待發貨數量,a.iquantity-a.foutquantity 可用量 from UFDATA_007_2011.dbo.CurrentStock a, --現存量彙總表 UFDATA_007_2011.dbo.Warehouse b, --倉庫檔案 UFDATA_007_2011.dbo.Inventory c --存貨檔案 where b.cWhCode = a.cWhcode and c.cInvCode = a.cinvcode and a.iquantity <> 0 and a.cwhcode = 120 order by 存貨編碼