SGGL_SHJ/DataBase/版本日志/已更新脚本/SGGL_SeDin_人员脚本/SGGLDB_V2021-10-29-000删除现场身...

24 lines
869 B
MySQL
Raw Normal View History

2022-09-05 16:36:31 +08:00
delete from QualityAudit_PersonQuality where PersonId in
(select PersonId from SitePerson_Person where IdentityCard is null)
go
delete from Training_TestRecordItem where TestRecordId in
(select TestRecordId from Training_TestRecord where TestManId in
(select PersonId from SitePerson_Person where IdentityCard is null))
go
delete from Training_TestRecord where TestManId in
(select PersonId from SitePerson_Person where IdentityCard is null)
go
delete from SitePerson_PersonInOut where PersonId in
(select PersonId from SitePerson_Person where IdentityCard is null)
go
delete from Training_TaskItem where PersonId in
(select PersonId from SitePerson_Person where IdentityCard is null)
go
delete from Training_Task where UserId in
(select PersonId from SitePerson_Person where IdentityCard is null)
go
delete from SitePerson_Person where IdentityCard is null
go