MariaDB PERIOD_DIFF関数で期間内の月数を返すサンプル

環境
MariaDB 10.6.4
Windows 10 Home 64bit

構文 
PERIOD_DIFF(P1,P2)
期間 P1 と P2 間の月数を返します。P1 および P2 は、YYMM または YYYYMM の書式にする必要があります。

使用例
SQL構文
SELECT PERIOD_DIFF(200902,200803) result;

実行結果

MariaDB [(none)]> SELECT PERIOD_DIFF(200902,200803) result;
+--------+
| result |
+--------+
|     11 |
+--------+
1 row in set (0.018 sec)

 

MariaDB

Posted by arkgame