日期時間函數(shù)
1、獲取子值旭贬,值為整數(shù)類型袖肥,函數(shù)如下
????year(date)返回date的年份(范圍在1000到9999)
????month(date)返回date中的月份數(shù)值
????day(date)返回date中的日期數(shù)值
????hour(time)返回time的小時數(shù)(范圍是0到23)
????minute(time)返回time的分鐘數(shù)(范圍是0到59)
????second(time)返回time的秒數(shù)(范圍是0到59)
????select year('2016-12-21');
2抹恳、日期計算教届,使用+-運算符懊亡,數(shù)字后面的關(guān)鍵字為year依啰、month、day店枣、hour速警、minute叹誉、second
????select '2016-12-21'+interval 1 day;
3、日期格式化date_format(date,format)
????參數(shù)format可選值如下
????????%Y 獲取年闷旧,返回完整年份
????????%y 獲取年长豁,返回簡寫年份
????????%m 獲取月,返回月份
????????%d 獲取日忙灼,返回天值
????????%H 獲取時匠襟,返回24進(jìn)制的小時數(shù)
????????%h 獲取時,返回12進(jìn)制的小時數(shù)
????????%i 獲取分该园,返回分鐘數(shù)
????????%s 獲取秒酸舍,返回秒數(shù)
????示例如下:將使用-拼接的日期轉(zhuǎn)換為使用空格拼接
????select date_format('2016-12-21','%Y %m %d');
4、當(dāng)前日期current_date()
????select current_date();
5里初、當(dāng)前時間current_time()
????select current_time();
6啃勉、當(dāng)前日期時間now()
????select now();