20 lines
		
	
	
		
			752 B
		
	
	
	
		
			Transact-SQL
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			752 B
		
	
	
	
		
			Transact-SQL
		
	
	
	
--清空库数据
 | 
						|
delete from [dbo].[WBS_WbsSetMatchCostControlInit]
 | 
						|
delete from WBS_CostControlInit
 | 
						|
delete from WBS_WbsSetInit
 | 
						|
delete from Wbs_UnitProjectInit
 | 
						|
delete from [dbo].[WBS_CnProfessionInit]
 | 
						|
GO
 | 
						|
 | 
						|
--清空项目数据
 | 
						|
delete from [dbo].[WBS_CostControlDetailHistory]
 | 
						|
delete from WBS_CostControlParentDetail
 | 
						|
delete from [dbo].[WBS_CostControlDetail]
 | 
						|
delete from [dbo].[WBS_WbsSetMatchCostControl]
 | 
						|
delete from [dbo].[WBS_CostControl]
 | 
						|
delete from [dbo].[Wbs_WbsSet]
 | 
						|
delete from [dbo].[Wbs_UnitProject]
 | 
						|
delete from WBS_CnProfession
 | 
						|
delete from [dbo].[Project_Installation] where projectid='' and InstallationName!='总图' 
 | 
						|
and InstallationName!='全厂地下主管网' and InstallationName!='临时设施' and InstallationName!='地勘' and InstallationName!='防腐绝热' 
 | 
						|
GO |