We could have also done it using Lead-Lag functions, these would make it little more easier!
@ankitgupta544611 ай бұрын
Awesome solution😊
@Manojkumar__9 ай бұрын
we can do this with one cte with cte as ( select emp_id,log_date,flag,date-rn as group_val from ( select *,ROW_NUMBER() over (partition by emp_id order by emp_id) as rn ,DATEPART(MONTH,log_date) as date from pwc_attandance_log where flag = 'Y' ) x ) select emp_id,MIN(log_date) as start_date, MAX(log_date) as end_date ,COUNT(1) as con_date from cte group by emp_id,group_val having count(1) > 1
@sharma859211 ай бұрын
Thanks for everything
@DEwithDhairy11 ай бұрын
Thanks, Do share in your network 😉
@Katakam.Ravikumar7 ай бұрын
But if some one login on 31sth of the month then next month 1st day then day logic will be 31 and 01. These two days will not come under same group
@Chathur7324 ай бұрын
with cte as ( select *, extract (day from P1_date) - row_number() over(order by (select null)) as diff2 from ( select *, case when extract (day from ld) - extract (day from P1_date) = 1 then 1 end as diff from ( select P1.emp_id as P1_emp_id, P1.log_date as P1_date, P1.flag as P1_flag, lead(P1.log_date) over(partition by P1.emp_id order by P1.log_date) as ld from pwc_attandance_log P1 where P1.flag = 'Y') a where case when extract (day from ld) - extract (day from P1_date) = 1 then 1 end is not null) b) select p1_emp_id, min(p1_date), max(ld), count(diff2) + 1 as no_of_days from cte group by p1_emp_id, diff2
@rohithb6511 ай бұрын
with cte as (select *, row_number() over() as pw from pwc_attandance_log), cte1 as (select emp_id,log_date,flag,pw, pw - (row_number() over() ) as ps from cte where flag = 'Y'), cte2 as (select *, count(ps) over(partition by ps) as vv from cte1 ) select emp_id,min(log_date),max(log_date),vv as days from cte2 where vv >= 2 group by vv,emp_id order by emp_id
@vaibhavkalyankar897011 ай бұрын
What if the consecutive date are 31&1 ?
@DEwithDhairy11 ай бұрын
I think in that case this solution will not work.
@jay_rana11 ай бұрын
What if the date contains value like 31JAN and 01FEB as consecutive days, in that case it will give wrong group_ value.
@JEETKUMAR890861230311 ай бұрын
I think we can go for "day-of-year" in that case & then we can do the grouping.
@apk199911 ай бұрын
Yes, instead of taking month from date we should take difference between current date and date column
@sha706111 ай бұрын
Thanks for the video. I have one doubt . Lets say we have log_date as 02-01-2024 and the next date is 03--02-2024. If we take day part out of them we will still get 2 and 3
@DEwithDhairy11 ай бұрын
Thanks if the data Is like that then logic remains the same we just need to apply the group clause on the year and month also then to make it unique.
@sha706111 ай бұрын
Got it. Thanks for the response.@@DEwithDhairy
@apk199911 ай бұрын
@@DEwithDhairyCan we take difference between current date and date column
@DEwithDhairy11 ай бұрын
@@apk1999 I don't think it will work.
@vijaygupta705911 ай бұрын
using one cte with cte as( Select * ,day(log_date) - row_number()over(partition by emp_id order by log_date) as diff_ , row_number()over(partition by emp_id order by log_date) as rn, day(log_date) as day_ from pwc_attandance_log where flag='Y') select emp_id,diff_, min(log_date) as start_date ,max(log_date) as end_date,count(*) as consucatie_date from cte group by emp_id, diff_ having count(*)>1
@DEwithDhairy11 ай бұрын
Great 😃
@saktibiswal64458 ай бұрын
Gonna try this
@satirthahalder95284 ай бұрын
with cte as (select *,lag(log_date,1,log_date) over(partition by emp_id order by log_date) prev_date from t where flag ='Y'), cte2 as (select *,case when log_date-prev_date=2
@muktarulhossain54257 ай бұрын
If a employee attend 1-05-2024, then again login 1-06-2024. Then what will happen?
@DEwithDhairy5 ай бұрын
Have created another video to tackle this scenario !
@throughmyglasses924110 ай бұрын
The Solution seems to have one issue when the dates are from different month . My solution : WITH CTE AS (select *,LAG(log_date) OVER(partition by emp_id order by log_date) as previous_log_date from pwc_attandance_log where flag='Y' ) ,PQR AS (select *,CASE WHEN previous_log_date-LAG(previous_log_date) OVER(partition by emp_id order by previous_log_date)>1 then 1 else 0 END as group_no from CTE where DATE_PART('day',log_date)- DATE_PART('day',previous_log_date)=1 ) ,XYZ AS (select *,SUM(group_no) OVER(partition by emp_id order by emp_id,previous_log_date) as g1 from PQR) ,last_1 as (select emp_id,g1,count(*)+1 as cnt ,min(previous_log_date) as min_date ,max(log_date) as max_date from XYZ group by emp_id,g1) select emp_id,cnt as consecutive_days,min_date as start_date,max_date as end_date from last_1;
@ramyagaraga37917 ай бұрын
with cte as (select *, row_number() over(partition by emp_id order by log_date) as r, DAY(log_date) AS "DAY", cast(DAY(log_date) as int) - row_number() over(partition by emp_id order by log_date) as diff from pwc_attandance_log where flag='Y') select emp_id,min(log_date) as start_date, max(log_date) as end_date,count(diff) from cte group by emp_id,diff having count(diff) >=2 order by emp_id;
@Arnob_1115 ай бұрын
This solution only works for a specific month. This will fail if the data is scaled over several months.
@DEwithDhairy5 ай бұрын
Yes correct, To cover that scenario take the difference between the date and row number to make the group that covers all the cases... I have covered this approach in my videos.
@codeset781010 ай бұрын
can anyone provide solution using lag functionality