curdate()
和current_date()
函数的作用相同,将当前日期按照yyyy-mm-dd
或yyyymmdd
格式的值返回。
mysql> select curdate(), current_date(), curdate() + 0;
+------------+----------------+---------------+
| curdate() | current_date() | curdate() + 0 |
+------------+----------------+---------------+
| 2022-07-12 | 2022-07-12 | 20220712 |
+------------+----------------+---------------+
1 row in set (0.00 sec)
mysql>
<< · Back Index ·>>