MySQL日期時間函數總結?

Tags: 時間, 函數, 日期,

MySQL中常用的日期時間函數。

工具/原料

電腦

MySql

方法/步驟

獲得當前日期+時間(date + time)1.1 函數:now()

相關函數:current_timestamp(),localtime(),localtimestamp()

MySQL日期時間函數總結

獲得當前日期(date)

函數:curdate()

相關函數:current_date(),current_date

MySQL日期時間函數總結

獲得當前時間(time)

函數:curtime()

相關函數:current_time(),current_time

MySQL日期時間函數總結

MySQL dayof…

函數:dayofweek(), dayofmonth(), dayofyear()分別返回日期參數,在一週、一月、一年中的位置,日期‘2008-08-08′ 是一週中的第6 天(1 = Sunday, 2 = Monday, …, 7 = Saturday)

一月中的第8 天;一年中的第221 天

MySQL日期時間函數總結

例子:給出西元0年至今多少天返回DATE值(不計算1582年以前)。根據format字符串格式化date值(在format字符串中可用標誌符)

MySQL日期時間函數總結

MySQL日期時間函數總結

相關問題答案