MySQL介紹日期函數

coldplay.xixi
發布: 2021-03-02 09:11:29
轉載
2479 人瀏覽過

MySQL介紹日期函數

日期函數類型:

#(1)取得目前日期的函數和取得目前時間的函數
(2)取得目前日期和時間的函數
(3)UNIX時間戳函數
(4)傳回UTC日期的函數和傳回UTC時間的函數
(5)取得月份的函數month( date)和monthname(date)
(6)取得星期的函數dayname(d)、dayofweek(d)和weekday(d)
(7)取得星期數的函數week(d)和dayofyear(d )
(8)取得天數的函數dayofyear(d)和dayofmonth(d)
(9)取得年份、季度、小時、分鐘和秒鐘的函數。
(10)取得日期的指定值的函數extract(type from date)
(11)時間和秒鐘轉換的函數
(12)計算日期和時間的函數
(13)將日期和時間格式化的函數

(相關免費學習推薦:mysql影片教學

(1)取得目前日期的函數和取得目前時間的函數

1.curdate()和current_date()
【範例】使用日期函數取得系統目前日期,SQL語句如下:

mysql> select curdate(),current_date(),curdate()+0;+------------+----------------+-------------+| curdate()  | current_date() | curdate()+0 |+------------+----------------+-------------+| 2019-08-18 | 2019-08-18     |    20190818 |+------------+----------------+-------------+1 row in set (0.00 sec)
登入後複製
  • #curdate () 0表示將目前日期值轉換為數值型。

2.curtime()和current_time()
【範例】使用時間函數取得系統目前時間,SQL語句如下:

mysql> select curtime(),current_time(),curtime()+0;+-----------+----------------+-------------+| curtime() | current_time() | curtime()+0 |+-----------+----------------+-------------+| 17:08:07  | 17:08:07       |      170807 |+-----------+----------------+-------------+1 row in set (0.00 sec)
登入後複製
  • #curtime() 0表示將目前時間值轉換為數值型。

(2)取得目前日期和時間的函數
  • #current_timestamp()、localtime()、now()和sysdate()四個函數作用相同,都是傳回目前日期和時間值。

【範例】使用日期時間函數取得目前系統時間與日期,SQL語句如下:

mysql> select current_timestamp(),
    -> localtime(),
    -> now(),
    -> sysdate();+---------------------+---------------------+---------------------+---------------------+| current_timestamp() | localtime()         | now()               | sysdate()           |+---------------------+---------------------+---------------------+---------------------+| 2019-08-18 19:10:05 | 2019-08-18 19:10:05 | 2019-08-18 19:10:05 | 2019-08-18 19:10:05 |+---------------------+---------------------+---------------------+---------------------+1 row in set (0.05 sec)
登入後複製

(3)UNIX時間戳函數
  • unix_timestamp(date)若為無參數呼叫,則傳回一個unix時間戳(GMT之後的秒數,GMT為格林尼治標準時間1970.1.1)作為無符號整數。
  • date可以是一個date字串,datetime字串、timestamp或一個當地時間的YY[YY]MMDD格式的數字。

1.unix_timestamp(date)
【範例】使用unix_timestamp函數傳回unix格式的時間戳記,SQL語句如下:

mysql> select unix_timestamp(),unix_timestamp(now()),now();+------------------+-----------------------+---------------------+| unix_timestamp() | unix_timestamp(now()) | now()               |+------------------+-----------------------+---------------------+|       1566127316 |            1566127316 | 2019-08-18 19:21:56 |+------------------+-----------------------+---------------------+1 row in set (0.05 sec)
登入後複製
  • from_unixtime()函數吧unix時間戳轉換為普通格式的時間,與unix_timestamp(date)函數互為反函數。

2.from_unixtime(date)
【範例】使用from_unixtime函數將unix時間戳記轉換為普通格式時間,SQL語句如下:

mysql> select from_unixtime('1566127316');+-----------------------------+| from_unixtime('1566127316') |+-----------------------------+| 2019-08-18 19:21:56.000000  |+-----------------------------+1 row in set (0.00 sec)
登入後複製

(4 )傳回UTC日期的函數和傳回UTC時間的函數。

1.UTC_DATE()
【範例】使用utc_date()函數傳回目前UTC日期值,SQL語句如下:

mysql> select utc_date(),utc_date()+0;+------------+--------------+| utc_date() | utc_date()+0 |+------------+--------------+| 2019-08-18 |     20190818 |+------------+--------------+1 row in set (0.05 sec)
登入後複製

2.UTC_TIME()
【範例】使用UTC_TIME()函數傳回目前UTC時間值,SQL語句如下:

mysql> select utc_time(),utc_time()+0;+------------+--------------+| utc_time() | utc_time()+0 |+------------+--------------+| 11:32:27   |       113227 |+------------+--------------+1 row in set (0.00 sec)
登入後複製

#(5)取得月份的函數month(date)和monthname(date)

1.month (date)
【範例】使用month()函數傳回指定日期中的月份,SQL語句如下:

mysql> select month('2019-08-18');+---------------------+| month('2019-08-18') |+---------------------+|                   8 |+---------------------+1 row in set (0.00 sec)
登入後複製

2.monthname(date)
【範例】使用monthname()函數傳回指定日期中的月份名稱,SQL語句如下:

mysql> select monthname('2019-08-18');+-------------------------+| monthname('2019-08-18') |+-------------------------+| August                  |+-------------------------+1 row in set (0.00 sec)
登入後複製

(6)取得星期的函數dayname(d)、dayofweek(d)和weekday(d)

#1. dayname(d)
【範例】使用dayname()函數傳回指定日期的工作日名稱,SQL語句如下:

mysql> select dayname('2019-08-18');+-----------------------+| dayname('2019-08-18') |+-----------------------+| Sunday                |+-----------------------+1 row in set (0.00 sec)
登入後複製

2.dayofweek(d)
【範例】使用dayofweek()函數傳回日期對應的周索引,SQL語句如下:

mysql> select dayofweek('2019-08-18');+-------------------------+| dayofweek('2019-08-18') |+-------------------------+|                       1 |+-------------------------+1 row in set (0.00 sec)
登入後複製

3.weekday(d)

  • weekday(d)傳回d對應的工作日索引:0代表週一, 1代代表週二,…6代表週日。

【範例】使用weekday()函數傳回日期對應的工作日索引,SQL語句如下:

mysql> select weekday('2019-08-18 19:40:00'),
    -> weekday('2019-08-18');+--------------------------------+-----------------------+| weekday('2019-08-18 19:40:00') | weekday('2019-08-18') |+--------------------------------+-----------------------+|                              6 |                     6 |+--------------------------------+-----------------------+1 row in set (0.00 sec)
登入後複製

(7)取得星期數的函數week(d )和dayofyear(d)
  • week(d)計算日期d是一年中第幾週,雙參形式允許指定該星期是否起始於週日或週一,若Mode參數被忽略,使用default_week_format系統自變數的值。

1.week(d)
【範例】使用week()函數查詢指定日期是一年中的第幾週,SQL語句如下:

mysql> select week('2019-08-18'),week('2019-08-18',0),week('2019-08-18',1);+--------------------+----------------------+----------------------+| week('2019-08-18') | week('2019-08-18',0) | week('2019-08-18',1) |+--------------------+----------------------+----------------------+|                 33 |                   33 |                   33 |+--------------------+----------------------+----------------------+1 row in set (0.05 sec
登入後複製

2 .weekofyear(d)
【例】使用weekofyear()查詢指定日期是一年中的第幾週,SQL語句如下:

mysql> select week('2019-08-18',3),weekofyear('2019-08-18');+----------------------+--------------------------+| week('2019-08-18',3) | weekofyear('2019-08-18') |+----------------------+--------------------------+|                   33 |                       33 |+----------------------+--------------------------+1 row in set (0.05 sec)
登入後複製

(8)取得天數的函數dayofyear( d)和dayofmonth(d)

1.dayofyear()
【範例】使用dayofyear()函數傳回指定日期在一年中的位置,SQL語句如下:

mysql> select dayofyear('2019-08-18');+-------------------------+| dayofyear('2019-08-18') |+-------------------------+|                     230 |+-------------------------+1 row in set (0.00 sec)
登入後複製

2.dayofmonth()
【範例】使用dayofmonth()函數傳回指定日期在一個月中的位置,SQL語句如下;

mysql> select dayofmonth('2019-08-18');+--------------------------+| dayofmonth('2019-08-18') |+--------------------------+|                       18 |+--------------------------+1 row in set (0.00 sec)
登入後複製

(9)取得年份、季度、小時、分鐘和秒鐘的函數。

1.YEAR(date)
【範例】使用year()函數傳回指定日期對應的年份,SQL語句如下:

mysql> select year('19-08-18'),year('98-02-19');+------------------+------------------+| year('19-08-18') | year('98-02-19') |+------------------+------------------+|             2019 |             1998 |+------------------+------------------+1 row in set (0.05 sec)
登入後複製

2.QUARTER(date)
【範例】使用quarter()函數傳回指定日期對應的季度,SQL語句如下:

mysql> select quarter('19-08-18');+---------------------+| quarter('19-08-18') |+---------------------+|                   3 |+---------------------+1 row in set (0.00 sec)
登入後複製

#3.MINUTE(time)
【範例】使用minute()函數傳回指定時間的分鐘值, SQL語句如下:

mysql> select minute('19-08-18 20:07:00');+-----------------------------+| minute('19-08-18 20:07:00') |+-----------------------------+|                           7 |+-----------------------------+1 row in set (0.00 sec)
登入後複製

4.SECOND(time)
【範例】使用second()函數傳回指定時間的秒值,SQL語句如下:

mysql> select second('20:07:00');+--------------------+| second('20:07:00') |+--------------------+|                  0 |+--------------------+1 row in set (0.00 sec)
登入後複製

(10)获取日期的指定值的函数extract(type from date)

【例】使用extract(type from date)函数提取日期或时间值。

mysql> select extract(year from '2019-08-18') as col1,
    -> extract(year_month from '2019-08-18 20:46:01') as col2,
    -> extract(day_minute from '2019-08-18 20:46:01') as col3;+------+--------+--------+| col1 | col2   | col3   |+------+--------+--------+| 2019 | 201908 | 182046 |+------+--------+--------+1 row in set (0.00 sec)
登入後複製

(11)时间和秒钟转换的函数

1.time_to_sec(time)

  • time_to_sec(time)返回已经转化为秒的time参数。转换公式为:小时x3600+分钟*60+秒。

【例】使用time_to_sec函数将时间值转换为秒值。

mysql> select time_to_sec('20:34:00');+-------------------------+| time_to_sec('20:34:00') |+-------------------------+|                   74040 |+-------------------------+1 row in set (0.00 sec)
登入後複製

2.sec_to_time(seconds)

  • sec_to_time函数返回值加上0值之后变成了小数值。
  • time_to_sec正好和sec_to_time互为反函数。

【例】使用sec_to_time()函数将秒值转换为时间格式,SQL语句如下;

mysql> select sec_to_time(2345),sec_to_time(2345)+0,
    -> time_to_sec('20:36:00'),sec_to_time('74040');+-------------------+---------------------+-------------------------+----------------------+| sec_to_time(2345) | sec_to_time(2345)+0 | time_to_sec('20:36:00') | sec_to_time('74040') |+-------------------+---------------------+-------------------------+----------------------+| 00:39:05          |                3905 |                   74160 | 20:34:00.000000      |+-------------------+---------------------+-------------------------+----------------------+1 row in set (0.05 sec)
登入後複製

(12)计算日期和时间的函数。

MySQL中计算日期和时间的格式:
MySQL介紹日期函數
1.date_add(date,interval expr type)adddate(date,interval expr type)两个函数的作用相同,执行日期的加运算:

【例】使用date_add()和adddate()函数执行日期加操作,SQL语句如下:

mysql> select date_add('2019-08-18 23:59:59',interval 1 second) as col1,
    -> adddate('2019-08-18 23:59:59',interval 1 second) as col2,
    -> date_add('2019-08-18 23:59:59',interval '1:1' minute_second) as col3;+---------------------+---------------------+---------------------+| col1                | col2                | col3                |+---------------------+---------------------+---------------------+| 2019-08-19 00:00:00 | 2019-08-19 00:00:00 | 2019-08-19 00:01:00 |+---------------------+---------------------+---------------------+1 row in set (0.05 sec)
登入後複製

2.date_sub(date,interval expr type)subdate(date,interval expr type)两个函数作用相同,执行日期的减运算:

【例】使用date_sub和subdate函数执行日期减操作,SQL语句如下:

mysql> select date_sub('2019-08-18',interval 31 day) as col1,
    -> subdate('2019-08-18',interval 31 day) as col2,
    -> date_sub('2019-08-18 21:15:10',interval '0 0:1:1' day_second) as col3;+------------+------------+---------------------+| col1       | col2       | col3                |+------------+------------+---------------------+| 2019-07-18 | 2019-07-18 | 2019-08-18 21:14:09 |+------------+------------+---------------------+1 row in set (0.00 sec)
登入後複製

3.addtime(date,expr)函数将expr值添加到date,并返回修改后的值,date是一个日期或者日期时间表达式,而expr是一个时间表达式。
【例】使用addtime进行时间加操作,SQL语句如下;

mysql> select addtime('2019-08-18 21:59:59','1:1:1'),addtime('02:02:02','02:00:00');+----------------------------------------+--------------------------------+| addtime('2019-08-18 21:59:59','1:1:1') | addtime('02:02:02','02:00:00') |+----------------------------------------+--------------------------------+| 2019-08-18 23:01:00                    | 04:02:02                       |+----------------------------------------+--------------------------------+1 row in set (0.05 sec)
登入後複製

4.subtime(date,expr)函数将date减去expr值,并返回修改后的值,date是一个日期或者日期时间表达式,expr是一个时间表达式。
【例】使用subtime()函数执行减操作,SQL语句如下:

mysql> select subtime('2019-08-18 21:59:59','1:1:1'),subtime('02:02:02','02:00:00');+----------------------------------------+--------------------------------+| subtime('2019-08-18 21:59:59','1:1:1') | subtime('02:02:02','02:00:00') |+----------------------------------------+--------------------------------+| 2019-08-18 20:58:58                    | 00:02:02                       |+----------------------------------------+--------------------------------+1 row in set (0.00 sec)
登入後複製

5.datediff(date1,date2)返回起始时间date1和结束时间date2之间的天数,date1和date2为日期或date-and-time表达式。计算中只用到这些值的日期部分。
【例】使用datediff()函数计算两个日期之间的间隔天数,SQL语句如下;

mysql> select datediff('2019-08-18 21:59:59','2018-07-18') as col1,
    -> datediff('2019-08-18 22:00:00','2019-08-20') as col2;+------+------+| col1 | col2 |+------+------+|  396 |   -2 |+------+------+1 row in set (0.00 sec)
登入後複製

(13)将日期和时间格式化的函数。

DATE_FORMAT时间日期格式:
MySQL介紹日期函數
1.date_format()
【例】使用date_format()函数格式化输出日期和时间值,SQL语句如下:

mysql> select date_format('2019-08-18 23:33:00','%w %m %y') as col1,
    ->  date_format('2019-08-18 23:33:00','%D %y %a %d %m %b %j') as col2;+---------+---------------------------+| col1    | col2                      |+---------+---------------------------+| 0 08 19 | 18th 19 Sun 18 08 Aug 230 |+---------+---------------------------+1 row in set (0.05 sec)
登入後複製

2.time_format()
【例】使用time_format(time,format)函数格式化输入时间值,SQL语句如下:

mysql> select time_format('23:39:30','%H %k %h %I %l');+------------------------------------------+| time_format('23:39:30','%H %k %h %I %l') |+------------------------------------------+| 23 23 11 11 11                           |+------------------------------------------+1 row in set (0.00 sec)
登入後複製

3.get_format()

get_format返回的格式字符串:
MySQL介紹日期函數
【例】使用get_format()函数显示不同格式化类型下的格式字符串,SQL语句如下:

mysql> select get_format(date,'eur'),get_format(date,'usa');+------------------------+------------------------+| get_format(date,'eur') | get_format(date,'usa') |+------------------------+------------------------+| %d.%m.%Y               | %m.%d.%Y               |+------------------------+------------------------+1 row in set (0.05 sec)
登入後複製

【例】在date_format()函数中,使用get_format函数返回的显示格式字符串来显示指定的日期值,SQL语句如下:

mysql> select date_format('2019-08-19 23:41:30',get_format(date,'usa'));+-----------------------------------------------------------+| date_format('2019-08-19 23:41:30',get_format(date,'usa')) |+-----------------------------------------------------------+| 08.19.2019                                                |+-----------------------------------------------------------+1 row in set (0.00 sec)
登入後複製

相关免费学习推荐:mysql数据库(视频)

以上是MySQL介紹日期函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板