-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFcalcularDiasBajaMicro.sql
57 lines (39 loc) · 1.3 KB
/
FcalcularDiasBajaMicro.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
CREATE FUNCTION LOS_VIAJEROS_DEL_ANONIMATO.FcalcularDiasBajaMicro(@patente nvarchar(255), @año int, @semestre int)
RETURNS int
AS BEGIN
declare @cantidadDias int = 0
declare @fechaInicio datetime
declare @fechaFin datetime
declare @mesInicial int
declare @mesFinal int
if (@semestre = 1)
begin
set @mesInicial = 1
set @mesFinal = 6
end
if (@semestre = 2)
begin
set @mesInicial = 7
set @mesFinal = 12
end
declare cur cursor
for select FechaInicio, FechaFin
from LOS_VIAJEROS_DEL_ANONIMATO.PeridoFueraDeServicio
where Patente = @patente and
YEAR(fechaInicio)=@año and YEAR(FechaFin)=@año and
MONTH(FechaInicio) BETWEEN @mesInicial AND @mesFinal and
MONTH(FechaFin) BETWEEN @mesInicial AND @mesFinal
open cur
fetch cur into @fechaInicio, @fechaFin
while @@FETCH_STATUS = 0
begin
--A FINES PRACTICOS TOMAMOS TODOS LOS MESES DE 30 DIAS
set @cantidadDias = @cantidadDias + ((YEAR(@fechaFin) - YEAR(@fechaInicio))*360)
set @cantidadDias = @cantidadDias + ((MONTH(@fechaFin) - MONTH(@fechaInicio))*30)
set @cantidadDias = @cantidadDias + (DAY(@fechaFin) - DAY(@fechaInicio))
fetch cur into @fechaInicio, @fechaFin
end
close cur
deallocate cur
RETURN @cantidadDias
END