16 lines
		
	
	
		
			407 B
		
	
	
	
		
			Transact-SQL
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			407 B
		
	
	
	
		
			Transact-SQL
		
	
	
	
| update Sys_Const
 | |
| set ConstText='关键事项与协调沟通'
 | |
| where GroupId='MenuType_P' and ConstText='关键事项'
 | |
| go
 | |
| update Sys_Const
 | |
| set ConstText='试车及移交管理'
 | |
| where GroupId='MenuType_P' and ConstText='试车管理'
 | |
| go
 | |
| update Sys_Const
 | |
| set ConstText='施工管理'
 | |
| where GroupId='MenuType_P' and ConstText='进度管理'
 | |
| go
 | |
| delete Sys_Const
 | |
| where GroupId='MenuType_P' and ConstText in('移交管理','材料管理','协调与沟通')
 | |
| go
 |