#now 返回当前系统日期+时间

select now();

#curdate 返回当前系统日期

select curdate();

#curtime 返回当前系统的时间

select curtime();

  • str_to_date:将日期格式的字符转换成指定格式的日期

str_to_date(‘9-13-1999’,’%m-%d-%Y’)

  • date_format:**将日期转换成字符**

date_format(‘2018/6/5’,’%Y年%m月%d日’)

  1. select
  2. date_format(NOW(),'%Y年%m月%d日%H时%i分%s秒') as date;

image.png

CASE表达式

image.png