- 1
what the hell is datediff???
4 Respuestas
+ 2
datediff=date difference
+ 2
The DATEDIFF() function returns the time between two dates.
SELECT DATEDIFF(day,'2016-06-05','2016-08-05') AS DiffDate
+ 1
- datediff(partedelafecha,fecha1,fecha2): calcula el intervalo de tiempo (según el primer argumento) entre las 2 fechas. El resultado es un valor entero que corresponde a fecha2-fecha1.
Ejemplos:
select datediff (day,'2005/10/28','2006/10/28');
retorna 365 (días).
select datediff(month,'2005/10/28','2006/11/29');
retorna 13 (meses).
0
great guyz