Files

7 lines
178 B
Transact-SQL
Raw Permalink Normal View History

2024-10-30 17:15:30 +08:00
--增加为了单位排序
alter table Environmental_EnergyReportItem
add SortUnit int NULL;
GO
update Environmental_EnergyReportItem set SortUnit=1 where EnergyReportId='template';
GO