current_date——當前日期
語法:current_datecurrent_date 函式能夠返回 sql 執行的日期,也就是該函式執行時的日期。由於沒有引數,因此無需使用括號。
例如:select current_date; 輸出 2020-05-07
current_time——當前時間
語法:current_time
例如:select current_time;輸出 14:51:53
current_timestamp——當前日期和時間
語法:
current_timestamp
例如:selectcurrent_timestamp ;輸出 2020-05-07 14:55:34
extract——擷取日期元素
語法:extract(日期元素 from 日期)
例如: select extract(year from current_timestamp) year; 輸出 2020
注意:使用 extract 函式可以截取出日期資料中的一部分,
例如「年」「月」,或者「小時」「秒」等
該函式的返回值並不是日期型別而是數值型別。
mysql 日期處理 mysql日期處理函式
mysql自己有格式化日期格式的函式 date format date,format 根據format字串格式化date值。下列修飾符可以被用在format字串中 m 月名字 january december w 星期名字 sunday saturday d 有英語字首的月份的日期 1st,2nd,...
mysql日期處理 mysql日期處理函式例項解析
這篇文章主要介紹了mysql日期處理函式例項解析,文中通過示例 介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下 首先建立一張實驗用的一張表 drop table if exists t student create table t student id int pr...
mysql處理日期 mysql日期處理函式例項解析
這篇文章主要介紹了mysql日期處理函式例項解析,文中通過示例 介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下 首先建立一張實驗用的一張表 drop table if exists t student create table t student id int pr...