這篇文章將為大家詳細(xì)講解有關(guān)MySQL中有什么日期轉(zhuǎn)換函數(shù),小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
站在用戶的角度思考問題,與客戶深入溝通,找到沾益網(wǎng)站設(shè)計與沾益網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:成都做網(wǎng)站、網(wǎng)站設(shè)計、外貿(mào)營銷網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、空間域名、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋沾益地區(qū)。
mysql日期轉(zhuǎn)換函數(shù)有:1、date_format();2、time_format();3、str_to_date();4、to_days();5、from_days();6、time_to_sec();7、sec_to_time()等。
本教程操作環(huán)境:windows7系統(tǒng)、mysql8版本、Dell G3電腦。
1,MySQL Date/Time to Str(日期/時間轉(zhuǎn)換為字符串)函數(shù):date_format(date,format)
, time_format(time,format)
:
函數(shù):date_format('2008-08-08 22:23:01', '%Y%m%d%H%i%s')
結(jié)果:20080808222301
MySQL 日期、時間轉(zhuǎn)換函數(shù):date_format(date,format)
, time_format(time,format)
能夠把一個日期/時間轉(zhuǎn)換成各種各樣的字符串格式。它是 str_to_date(str,format) 函數(shù)的 一個逆轉(zhuǎn)換。
2,MySQL Str to Date (字符串轉(zhuǎn)換為日期)函數(shù):str_to_date(str, format)
:
select str_to_date('08/09/2008', '%m/%d/%Y'); -- 2008-08-09 select str_to_date('08/09/08' , '%m/%d/%y'); -- 2008-08-09 select str_to_date('08.09.2008', '%m.%d.%Y'); -- 2008-08-09 select str_to_date('08:09:30', '%h:%i:%s'); -- 08:09:30 select str_to_date('08.09.2008 08:09:30', '%m.%d.%Y %h:%i:%s'); -- 2008-08-09 08:09:30
str_to_date(str,format)
轉(zhuǎn)換函數(shù),可以把一些雜亂無章的字符串轉(zhuǎn)換為日期格式。
3,MySQL (日期、天數(shù))轉(zhuǎn)換函數(shù):to_days(date)
, from_days(days)
:
select to_days('0000-00-00'); -- 0 select to_days('2008-08-08'); -- 733627
4,MySQL (時間、秒)轉(zhuǎn)換函數(shù):time_to_sec(time)
, sec_to_time(seconds)
:
select time_to_sec('01:00:05'); -- 3605 select sec_to_time(3605); -- '01:00:05'
5,MySQL 拼湊日期、時間函數(shù):makdedate(year,dayofyear)
, maketime(hour,minute,second)
:
select makedate(2001,31); -- '2001-01-31' select makedate(2001,32); -- '2001-02-01' select maketime(12,15,30); -- '12:15:30'
6,MySQL (Unix 時間戳、日期)轉(zhuǎn)換函數(shù):
unix_timestamp(), unix_timestamp(date), from_unixtime(unix_timestamp), from_unixtime(unix_timestamp,format)
關(guān)于“mysql中有什么日期轉(zhuǎn)換函數(shù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。