weeks_diff
Returns the week difference between two date expressions (expr1
β expr2
), accurate to the week.
Syntaxβ
BIGINT weeks_diff(DATETIME expr1,DATETIME expr2);
Parametersβ
-
expr1
: the end time. It must be of the DATETIME or DATE type. -
expr2
: the start time. It must be of the DATETIME or DATE type.
Return valueβ
Returns a BIGINT value.
NULL is returned if the date does not exist, for example, 2022-02-29.
Examplesβ
select weeks_diff('2010-11-30 23:59:59', '2010-1-1 23:59:59');
+--------------------------------------------------------+
| weeks_diff('2010-11-30 23:59:59', '2010-1-1 23:59:59') |
+--------------------------------------------------------+
| 47 |
+--------------------------------------------------------+
select weeks_diff(current_time(), '2010-11-30 23:59:59');
+---------------------------------------------------+
| weeks_diff(current_time(), '2010-11-30 23:59:59') |
+---------------------------------------------------+
| 619 |
+---------------------------------------------------+
select weeks_diff('2010-11-30 23:59:59', '2010-11-24 23:59:59');
+----------------------------------------------------------+
| weeks_diff('2010-11-30 23:59:59', '2010-11-24 23:59:59') |
+----------------------------------------------------------+
| 0 |
+----------------------------------------------------------+