dayofmonth() 是一个 MySQL 日期/时间函数。它用于从给定日期获取某月的哪一天。
语法
select dayofmonth('date');
参数:
date:日期值。
返回
此函数返回给定日期某月的哪一天。
示例 1
Select dayofmonth('2023-09-25');
输出:
mysql> Select dayofmonth('2023-09-25');
+--------------------------+
| dayofmonth('2023-09-25') |
+--------------------------+
| 25 |
+--------------------------+
1 row in set (0.00 sec)
示例 2
Select dayofmonth('2023-09-10');
输出:
mysql> Select dayofmonth('2023-09-10');
+--------------------------+
| dayofmonth('2023-09-10') |
+--------------------------+
| 10 |
+--------------------------+
1 row in set (0.00 sec)