標籤:blog io ar for div on 2014 log ad
#now(),擷取目前時間戳的日期格式[‘Y-m-d H:i:s‘]#sysdate().擷取目前時間戳的日期格式[‘Y-m-d H:i:s‘]select now()select sysdate();#curdate() 擷取目前時間戳的日期格式[‘Y-m-d‘] current_date()select curdate();select current_date();#curtime()/current_time 擷取目前時間戳的時間格式[‘H:i:s‘]select curtime();select current_time();# 獲得當前 UTC(格林尼治時間) 日期時間函數:utc_date(), utc_time(), utc_timestamp()select utc_time(),utc_date(),utc_timestamp()#dayofweek(date)擷取日期一周中屬於周幾#dayofmonth()擷取日期在一月中屬於第幾天#dayofyear()擷取日期在一年中屬於第幾天select dayofweek(‘2014-11-17‘)select dayofmonth(‘2014-11-17‘)select dayofyear(‘2014-11-17‘)#5. MySQL 返回星期和月份名稱函數:dayname(), monthname()select dayname();select monthname();#last_day()返回日期月份中最後一天的日期select last_day(‘2014-11-17‘);#date_add(now(),sss)返回一個增加設定的日期select date_add(‘2014-11-17‘,interval 2 day) select date_add(‘2014-11-17‘,interval 1 week) #date_sub(now(),sss) 返回一個減少特定設定的日期select date_sub(‘2014-11-17‘,interval 2 day)#period_diff(date1,date2)比較兩個日期相差的月數period_diff(201411,201408);#unix_timestamp()擷取當前的時間戳記select unix_timestamp();#from_unixtime()將時間戳記轉化為日期格式select from_unixtime(unix_timestamp(),‘%Y-%m-%d‘);#date_format格式化日期格式select date_format(now(),‘%Y-%m-%d‘);
mysql 日期函數