- -- =============================================
- -- 建立日期: 2015-05-18
- -- 功能说明: 清除客户端库存管理界面相关的所有表数据;
- -- 备 注:
- -- =============================================
- use [db]
- go
- truncate table shangpin -- 清除商品表;
- truncate table shangpinlb -- 清除商品类别表;
- truncate table storeinfo -- 清除入库表;
- truncate table storeinfo2 -- 清除出库表;
- truncate table fixedassets -- 清除固定资产表;
- go
|