xinjiang/DataBase/版本日志/SGGLDB_V2024-10-23-001-phf.sql

7 lines
178 B
Transact-SQL

--增加为了单位排序
alter table Environmental_EnergyReportItem
add SortUnit int NULL;
GO
update Environmental_EnergyReportItem set SortUnit=1 where EnergyReportId='template';
GO