প্রত্যেককে এবং আইএমএইচও-তে যথাযথ শ্রদ্ধার সাথে,
There is not much difference between While LOOP and Recursive CTE in terms of RBAR
ব্যবহার করার সময় Recursive CTE
এবং একসাথে খুব বেশি পারফরম্যান্স লাভ হয় না Window Partition function
।
Appid
হওয়া উচিত int identity(1,1)
, বা এটি ক্রমবর্ধমান হওয়া উচিত clustered index
।
অন্যান্য উপকারের পাশাপাশি এটিও নিশ্চিত করে APPDate
যে রোগীর সমস্ত ক্রমাগত সারি অবশ্যই বৃহত্তর হতে হবে।
আপনি সহজেই APPID
আপনার ক্যোয়ারিতে এটি খেলতে পারবেন যা inequality
অপারেটর>>, <পিপিএডে রাখার চেয়ে আরও কার্যকর will ফেলে inequality
মত> অপারেটর, <APPID এসকিউএল অপ্টিমাইজার সাহায্য করবেন।
এছাড়াও টেবিলে দুটি তারিখের কলাম থাকতে হবে
APPDateTime datetime2(0) not null,
Appdate date not null
যেহেতু এটি সর্বাধিক গুরুত্বপূর্ণ সারণীতে সর্বাধিক গুরুত্বপূর্ণ কলামগুলি, তাই খুব বেশি castালাই নয়, রূপান্তর করুন।
তাই Non clustered index
অ্যাপডেটে তৈরি করা যায়
Create NonClustered index ix_PID_AppDate_App on APP (patientid,APPDate) include(other column which is not i predicate except APPID)
অন্যান্য স্ক্রিনের ডেটা দিয়ে আমার স্ক্রিপ্টটি পরীক্ষা করুন এবং লেম্মে জানেন যে কোন নমুনা ডেটা এটি কাজ করছে না। এমনকি যদি এটি কাজ না করে তবে আমি নিশ্চিত যে এটি আমার স্ক্রিপ্টের যুক্তিতেই ঠিক করা যেতে পারে।
CREATE TABLE #Appt1 (ApptID INT, PatientID INT, ApptDate DATE)
INSERT INTO #Appt1
SELECT 1,101,'2020-01-05' UNION ALL
SELECT 2,505,'2020-01-06' UNION ALL
SELECT 3,505,'2020-01-10' UNION ALL
SELECT 4,505,'2020-01-20' UNION ALL
SELECT 5,101,'2020-01-25' UNION ALL
SELECT 6,101,'2020-02-12' UNION ALL
SELECT 7,101,'2020-02-20' UNION ALL
SELECT 8,101,'2020-03-30' UNION ALL
SELECT 9,303,'2020-01-28' UNION ALL
SELECT 10,303,'2020-02-02'
;With CTE as
(
select a1.* ,a2.ApptDate as NewApptDate
from #Appt1 a1
outer apply(select top 1 a2.ApptID ,a2.ApptDate
from #Appt1 A2
where a1.PatientID=a2.PatientID and a1.ApptID>a2.ApptID
and DATEDIFF(day,a2.ApptDate, a1.ApptDate)>30
order by a2.ApptID desc )A2
)
,CTE1 as
(
select a1.*, a2.ApptDate as FollowApptDate
from CTE A1
outer apply(select top 1 a2.ApptID ,a2.ApptDate
from #Appt1 A2
where a1.PatientID=a2.PatientID and a1.ApptID>a2.ApptID
and DATEDIFF(day,a2.ApptDate, a1.ApptDate)<=30
order by a2.ApptID desc )A2
)
select *
,case when FollowApptDate is null then 'New'
when NewApptDate is not null and FollowApptDate is not null
and DATEDIFF(day,NewApptDate, FollowApptDate)<=30 then 'New'
else 'Followup' end
as Category
from cte1 a1
order by a1.PatientID
drop table #Appt1