您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“MYSQL時(shí)間函數(shù)方用法”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
測(cè)試表:
root@test 16:50>desc t1;
+-------+----------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| id | int(11) | YES | | NULL | |
| t1 | datetime | YES | | NULL | |
+-------+----------+------+-----+---------+-------+
2 rows in set (0.00 sec)
root@test 16:50>select * from t1;
+------+---------------------+
| id | t1 |
+------+---------------------+
| 1 | 2012-05-13 12:27:12 |
| 2 | 2012-05-13 12:27:12 |
| 3 | 2012-05-13 12:27:12 |
+------+---------------------+
(1),DATE_ADD(date,INTERVAL expr unit)
root@test 16:50>SELECT DATE_ADD(t1,INTERVAL -1 YEAR) FROM t1;
+-------------------------------+
| DATE_ADD(t1,INTERVAL -1 YEAR) |
+-------------------------------+
| 2011-05-13 12:27:12 |
| 2011-05-13 12:27:12 |
| 2011-05-13 12:27:12 |
+-------------------------------+
root@test 17:21>SELECT DATE_ADD('2008-01-02', INTERVAL 31 DAY);
+-----------------------------------------+
| DATE_ADD('2008-01-02', INTERVAL 31 DAY) |
+-----------------------------------------+
| 2008-02-02 |
+-----------------------------------------+
(2),DATE_FORMAT(date,format)
format格式有很多種,具體可以MYSQL手冊(cè)。該函數(shù)讓時(shí)間以某種格式顯示
root@test 17:00>SELECT DATE_FORMAT(t1, '%H:%i:%s') from t1;
+-----------------------------+
| DATE_FORMAT(t1, '%H:%i:%s') |
+-----------------------------+
| 12:27:12 |
| 12:27:12 |
| 12:27:12 |
+-----------------------------+
(3)datediff(expr1,expr2)用于計(jì)算兩個(gè)時(shí)間的相差的天數(shù)
root@test 17:01>select datediff(t1,now()) from t1;
+--------------------+
| datediff(t1,now()) |
+--------------------+
| -23 |
| -23 |
| -23 |
+--------------------+
4,返回當(dāng)前日期curdate(),curtime()返回當(dāng)前時(shí)間,now()返回當(dāng)前的日期和時(shí)間。
5,返回日期中的年份year(),返回日期中月份month(),返回日期中的天day(),返回日期中時(shí)間time()。
root@test 17:08>select day(t1) from t1;
+---------+
| day(t1) |
+---------+
| 13 |
| 13 |
| 13 |
+---------+
3 rows in set (0.00 sec)
root@test 17:13>select time(t1) from t1;
+----------+
| time(t1) |
+----------+
| 12:27:12 |
| 12:27:12 |
| 12:27:12 |
+----------+
3 rows in set (0.00 sec)
root@test 17:13>select month(t1) from t1;
+-----------+
| month(t1) |
+-----------+
| 5 |
| 5 |
| 5 |
+-----------+
3 rows in set (0.00 sec)
root@test 17:13>select year(t1) from t1;
+----------+
| year(t1) |
+----------+
| 2012 |
| 2012 |
| 2012 |
+----------+
3 rows in set (0.00 sec)
6,week()計(jì)算當(dāng)前日期為本年度的多少周
root@test 17:16>select week('2012-06-05');
+--------------------+
| week('2012-06-05') |
+--------------------+
| 23 |
+--------------------+
1 row in set (0.00 sec)
“MYSQL時(shí)間函數(shù)方用法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。