MySQL时间日期函数

  • 当前时间
    now()
    current_timestamp()

    current_date()
    current_time()

  • date_format(date, format)
    select date_format(now(), "%Y-%m-%d %H:%i:%S"); 2019-05-23 11:20:14 %H为24小时制
    select date_format(now(), "%Y-%m-%d %h:%i:%S %p"); 2019-05-23 11:20:14 AM %h为12小时制,%p表示AM/PM。

  • dayof*(date)
    dayofyear(date) 返回1~366
    dayofmonth(date) 返回1~31
    dayofweek(date) 返回1~7(1为星期天)
    weekday(date) 返回0~6(0为星期一)

你可能感兴趣的:(笔记)