Update from Sync Service

This commit is contained in:
FNS Service
2026-04-21 17:24:50 +08:00
parent c160565270
commit f3e8f9ae52
218 changed files with 5633 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