Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
201 views
in Technique[技术] by (71.8m points)

sql - Ranking / Case Statement referencing a CTE Table

I have the following case expression that I need help revising - I am not sure how to properly format this case statement:

,case when Ranking(statusing_Facility_CD) <> Ranking-1(Statusing_Facility_CD) 
 and Ranking(Equipment_Status_Type_CD)='ENR' and Ranking-1(Equipment_Status_Type_CD)='ARV' 
 then DATEDIFF(hh,Ranking(Status_Time,Ranking-1(Status_Time) end as ENR_TO_ARV

The Result I am going for is to have another column named 'ENR_ARV_Time' that would return the datediff(hh) for the Statusing_Facility_CD where the equipment_Status_type_cd = 'ENR':

Equipment_Unit_NB|Statusing_Facility_CD| Status_Time      | Equipment_Status_Type_CD| Ranking 
117349                  402             2020-12-23 10:37:26          ARR     1      
117349                  422             2020-12-23 05:07:17          ENR     2      
117349                  422             2020-12-22 22:45:05          LDD     3      
117349                  422             2020-12-21 20:22:05          LDG     4      
117349                  422             2020-12-21 14:22:37          UAD     5      
117349                  422             2020-12-21 08:25:44          ARV     6      
117349                  621             2020-12-21 02:03:45          ENR     7      
117349                  621             2020-12-20 17:18:44          ARR     8      
117349                  347             2020-12-20 04:51:25          ENR     9      
117349                  347             2020-12-20 03:37:45          LDD    10  
question from:https://stackoverflow.com/questions/65902432/ranking-case-statement-referencing-a-cte-table

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...