Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Applies to:
Databricks SQL
Databricks Runtime
Returns the number of months elapsed between dates or timestamps in expr1 and expr2.
Syntax
months_between(expr1, expr2 [, roundOff] )
Arguments
expr1: AnDATEorTIMESTAMPexpression.expr2: An expression of the same type asexpr1.roundOff: A optionalBOOLEANexpression.
Returns
A DOUBLE.
If expr1 is later than expr2, the result is positive.
If expr1 and expr2 are on the same day of the month, or both are the last day of the month, time of day is ignored.
Otherwise, the difference is calculated based on 31 days per month, and rounded to 8 digits unless roundOff = false.
Examples
> SELECT months_between('1997-02-28 10:30:00', '1996-10-30');
3.94959677
> SELECT months_between('1997-02-28 10:30:00', '1996-10-30', false);
3.9495967741935485