#日期函式
#now()返回系統當前日期+時間
select now() out_put;--結果:2020-02-13 08:38:18
#curdate()返回系統當前日期,不包含時間
select curdate() out_put;--結果:2020-02-13
#curtime()返回當前時間,不包含日期
select curtime() out_put;--結果:08:41:09
#可以獲取指定的部分,年,月,小時,分鐘,秒
select year(now()) out_put;--結果:2020
select year('1998-01-01') out_put;--結果:1998
select month(now());--結果:2
select monthname(now());--結果:february 同樣表示的是2月
#str_to_date(str,format)將指定的字串轉換成日期格式
select str_to_date('1998-1-2','%y-%c-%d');--結果:1998-01-02 這裡的百分號其實是佔位的意思
#date_format(date,format)將日期轉換成字串
select date_format(now(),'%y年%m月%d日') as out_put;--結果:20年02月13日
mysql日期函式彙總 mysql日期函式彙總
一 當前時間獲取 1.now 獲得當前日期 時間 2.sysdate 獲得當前日期 時間 3.current timestamp,current timestamp 獲得當前時間戳 二 日期轉換函式 時間轉換函式 1.date format date,format time format time,...
mysql日期函式轉換 Mysql日期函式大全 轉
date add date,interval expr type date sub date,interval expr type adddate date,interval expr type subdate date,interval expr type 對日期時間進行加減法運算 adddate...
mysql 日期格式化函式語法
date format 函式用於以不同的格式顯示日期 時間資料。date format date,format date 引數是合法的日期。format 規定日期 時間的輸出格式。可以使用的格式有 格式描述 a縮寫星期名 b縮寫月名 c月,數值 d帶有英文本首的月中的天 d月的天,數值 00 31 ...