Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Query SQL per presenze in entrata/uscita

Prova questo:

;with cte as
(select *, rank() over(partition by ID_Emp order by [Date]) rn
 from attendance)

select src.ID_Emp, src.Name, convert(date, src.[Date]) as [Date],
concat(datepart(hour,src.[Date]),':',datepart(minute,src.[Date])) as [TimeIn],
concat(datepart(hour,tgt.[Date]),':',datepart(minute,tgt.[Date])) as [TimeOut],
concat(datediff(minute,src.[Date],tgt.[Date])/60,':',datediff(minute,src.[Date],tgt. [Date])%60) as [Hours]
from cte src
inner join cte tgt on src.ID_Emp = tgt.ID_Emp and src.rn + 1 = tgt.rn and src.rn % 2 = 1

Avvertenza:l'ho testato solo su SQL Server 2008 R2, ma presumo che dovrebbe funzionare anche su Oracle con le modifiche appropriate.

Spiegazione:Usiamo il RANK funzione per ordinare per data e ora per ogni ID_Emp . Quindi, ci uniamo su ID e ottieni coppie di righe. Infine, per assicurarci di non selezionare ogni coppia di righe consecutive, richiediamo che la posizione della riga di origine sia dispari.