Update from Sync Service

This commit is contained in:
FNS Service
2026-04-21 13:00:34 +08:00
parent aef64d8987
commit ed22969fc0
204 changed files with 5385 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
begin tran
```sql
select distinct * into #temp from DataSyncStationSX
delete DataSyncStationSX
go
insert DataSyncStationSX select * from #temp Sqlclub
go
drop table #temp
select * from DataSyncStationSX
```
order by sid
commit