MySQL日期和時間函式

2022-03-18 00:51:08 字數 1346 閱讀 4135

durdate()函式

返回當前日期,只包含年月日

curtime()函式

返回當前時間,只包含時分秒

now()函式

返回當前的日期和時間,年月日時分秒全部包含。

unix_timestamp(date)函式

返回日期date的unix時間戳

week(date),year(date),hour(time),minute(time)函式

week(date):返回所給的日期是一年中的第幾周

year(date):返回所給的日期是哪一年

hour(time):返回所給時間的小時

minute(time):返回所給時間的分鐘

monthname(date)函式

返回date的英文月份名稱

date_format(date,fmt)函式

按字串fmt格式化日期date值,此函式能夠按指定的格式顯示日期

第一列返回當前的日期時間,第二列返回距離當前日期乙個小時後的日期時間,第3列返回距離當前日期31天後的日期時間,第四列返回距離當前日期一年兩個月後的日期時間。

datediff(date1,date2)函式

用來計算兩個日期之間相差的天數

Mysql日期和時間函式

date format date,format 根據format字串格式化date值。下列修飾符可以被用在format字串中 m 月名字 january december w 星期名字 sunday saturday d 有英語字首的月份的日期 1st,2nd,3rd,等等。y 年,數字,4 位 y...

MySQL日期和時間函式

1 獲取當前日期的函式和獲取當前時間的函式 curdate 0把時間變成數字 select curdate current date curdate 0,now 結果2020 08 22 2020 08 22 20200822 2020 08 22 19 11 35select current ti...

MYSQL常用函式(時間和日期函式)

curdate 或current date 返回當前的日期 curtime 或current time 返回當前的時間 date add date,interval int keyword 返回日期date加上間隔時間int的結果 int必須按照關鍵字進行格式化 如 selectdate add c...