MySQL中给出了三个较为常用的日期函数:
- now:获取当前日期
- str_to_date:将日期格式的字符转换成指定格式的日期
- date_format:将日期转换成字符
1.now
该函数可以获得当前的系统时间
2.str_to_date
该函数能够将给定的字符串按照提供的模板进行解析转化成日期格式的数据,日期格式如下:
例1
select str_to_date('12-17 2022 19:12', '%m-%d %Y %H:%i') as output;
3.date_format
该函数可以实现将日期型数据转化为给定格式的字符串
例子
select date_format(now(), '现在是%Y年%m月%d日%H点%i分') as output;