67 lines
3.3 KiB
Transact-SQL
67 lines
3.3 KiB
Transact-SQL
|
|
--无序维护sql
|
|
update VisitTask set TaskBlindName='Follow Up '
|
|
from VisitTask
|
|
INNER join ReadingQuestionCriterionTrial on VisitTask.TrialReadingCriterionId=ReadingQuestionCriterionTrial.Id
|
|
INNER join SubjectVisit on VisitTask.SourceSubjectVisitId=SubjectVisit.Id
|
|
where SubjectVisit.IsBaseLine=0 and ReadingQuestionCriterionTrial.IsReadingTaskViewInOrder=0
|
|
|
|
|
|
-- 有序维护sql
|
|
update VisitTask set TaskBlindName='Follow Up '+ cast(sv.rn as varchar)
|
|
from VisitTask
|
|
join ReadingQuestionCriterionTrial on VisitTask.TrialReadingCriterionId=ReadingQuestionCriterionTrial.Id
|
|
--join SubjectVisit on VisitTask.SourceSubjectVisitId=SubjectVisit.Id
|
|
join ( select Id SubjectVisitId, IsBaseLine, ROW_NUMBER() over( partition by SubjectId order by VisitNum asc )-1 rn,VisitNum from SubjectVisit) sv on VisitTask.SourceSubjectVisitId=sv.SubjectVisitId
|
|
where sv.IsBaseLine=0 and ReadingQuestionCriterionTrial.IsReadingTaskViewInOrder=1
|
|
|
|
update VisitTask set TaskBlindName='Baseline' from VisitTask xiuga
|
|
join SubjectVisit on VisitTask.SourceSubjectVisitId=SubjectVisit.Id where SubjectVisit.IsBaseLine=1
|
|
|
|
update Dictionary set code =0 where Id='15bb5529-a6fe-439f-5196-08da179a7080'
|
|
update Dictionary set code =1 where Id='0628d7be-afba-4471-5197-08da179a7080'
|
|
update Dictionary set code =2 where Id='41bfec4b-dbfb-401d-5198-08da179a7080'
|
|
update Dictionary set code =-1 where Id='1fac678d-69b6-41c3-5199-08da179a7080'
|
|
go
|
|
|
|
|
|
update ReadingQuestionCriterionTrial set DigitPlaces=DigitPlaces-1 where DigitPlaces is not null
|
|
update ReadingQuestionCriterionTrial set DigitPlaces=-1 where DigitPlaces=3
|
|
|
|
|
|
--2022 12 -9 同步
|
|
-- Dictionary UserTypeMenu Menu FrontAuditConfig ReadingQuestionCriterionSystem ReadingTableQuestionSystem
|
|
|
|
|
|
|
|
--阅片标准维护
|
|
update DataInspection set ObjectRelationParentId3 = (select top 1 TrialReadingCriterionId from SubjectUser where Id =DataInspection.GeneralId) where EntityName='SubjectUser'
|
|
update DataInspection set ObjectRelationParentId2 = (select top 1 TrialReadingCriterionId from ReadingPeriodSet where Id =DataInspection.GeneralId) where EntityName='ReadingPeriodSet'
|
|
update DataInspection set ObjectRelationParentId2 = (select top 1 TrialReadingCriterionId from ReadModule where Id =DataInspection.GeneralId) where EntityName='ReadModule'
|
|
update DataInspection set ObjectRelationParentId2 = (select top 1 TrialReadingCriterionId from TaskConsistentRule where Id =DataInspection.GeneralId) where EntityName='TaskConsistentRule'
|
|
update DataInspection set ObjectRelationParentId3 = (select top 1 TrialReadingCriterionId from VisitTask where Id =DataInspection.GeneralId) where EntityName='VisitTask'
|
|
|
|
update ReadingTableQuestionTrial set DictionaryCode='' where DictionaryCode is null
|
|
|
|
|
|
|
|
|
|
--维护RowInfo的OrderMark
|
|
|
|
select * from ReadingTableAnswerRowInfo
|
|
update ReadingTableAnswerRowInfo set ReadingTableAnswerRowInfo.OrderMark=ReadingQuestionTrial.OrderMark from ReadingQuestionTrial
|
|
inner join ReadingTableAnswerRowInfo on ReadingTableAnswerRowInfo.QuestionId=ReadingQuestionTrial.Id
|
|
|
|
|
|
|
|
delete ReadingTableQuestionAnswer where TableQuestionId in (select id from ReadingTableQuestionTrial where QuestionMark=3)
|
|
go
|
|
delete ReadingTableQuestionTrial where QuestionMark=3
|
|
go
|
|
delete ReadingTableQuestionSystem where QuestionMark=3
|
|
go
|
|
|
|
|
|
--发布之前备份 前后端代码和完整的数据库
|
|
|