MySQL Tutorial/Date Time Functions/PERIOD DIFF — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 09:50, 26 мая 2010
PERIOD_DIFF(P1,P2) returns the number of months between periods P1 and P2.
P1 and P2 should be in the format YYMM or YYYYMM.
The period arguments P1 and P2 are not date values.
mysql>
mysql> SELECT PERIOD_DIFF(9803,199803);
+--------------------------+
| PERIOD_DIFF(9803,199803) |
+--------------------------+
| 0 |
+--------------------------+
1 row in set (0.00 sec)
mysql>