Update from Sync Service

This commit is contained in:
FNS Service
2026-04-21 17:42:54 +08:00
parent 65f16fe48c
commit 2b59b9b22e
63 changed files with 2645 additions and 36 deletions

15
数据库/去重.md Executable file
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