mysql日期和時間函式學習
常用的日期和時間函式包括:
基本函式的使用
如:
mysql> select AddDate(now(),1) ;
+---------------------+
| AddDate(now(),1) |
+---------------------+
| 2015-10-20 14:29:18 |
+---------------------+
1 row in set (0.06 sec)
mysql> select adddate(now(),1) ;
+---------------------+
| adddate(now(),1) |
+---------------------+
| 2015-10-20 14:29:24 |
+---------------------+
1 row in set (0.00 sec)
mysql> select addtime(now(),1) ;
+---------------------+
| addtime(now(),1) |
+---------------------+
| 2015-10-19 14:29:33 |
+---------------------+
1 row in set (0.00 sec)
mysql> select curdate() ;
+------------+
| curdate() |
+------------+
| 2015-10-19 |
+------------+
1 row in set (0.00 sec)
建立時間戳格式的欄位:
mysql> drop table test_date;
Query OK, 0 rows affected (0.28 sec)
mysql> create table test_Date(v_date timestamp);
Query OK, 0 rows affected (0.50 sec)
插入資料:
mysql> insert into test_Date select curtime();
Query OK, 1 row affected (0.14 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> insert into test_Date select now();
Query OK, 1 row affected (0.14 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> insert into test_Date select curdate();
Query OK, 1 row affected (0.26 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> select * from test_date;
+---------------------+
| v_date |
+---------------------+
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
| 2015-10-19 00:00:00 |
+---------------------+
3 rows in set (0.00 sec)
查詢時間為當天時間的,時間不一致的不匹配,只有當天0時的時間匹配:
mysql> select * from test_Date where v_Date=curDate();
+---------------------+
| v_date |
+---------------------+
| 2015-10-19 00:00:00 |
+---------------------+
1 row in set (0.00 sec)
查詢某一天的資料,可以使用date函式對欄位進行限制來實現
mysql> select * from test_Date where date(v_Date)=curDate();
+---------------------+
| v_date |
+---------------------+
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
| 2015-10-19 00:00:00 |
+---------------------+
3 rows in set (0.00 sec)
建立索引:
mysql> create index idx_date on test_date(v_date);
Query OK, 0 rows affected (0.48 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> explain select * from test_date where date(v_date)='2015-10-19' \G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: test_date
type: index
possible_keys: NULL
key: idx_date
key_len: 4
ref: NULL
rows: 3
Extra: Using where; Using index
1 row in set (0.05 sec)
mysql> explain select * from test_date where v_date>='2015-10-19' and v_date
15-10-20' \G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: test_date
type: index
possible_keys: idx_date
key: idx_date
key_len: 4
ref: NULL
rows: 3
Extra: Using where; Using index
1 row in set (0.00 sec)
在欄位v_date上建立索引後,使用date(v_date)作為條件進行查詢時無法使用到索引;範圍查詢時可以用到索引。
查詢一段時間的資料:
mysql> insert into test_date select adddate(now(),-10);
Query OK, 1 row affected (0.09 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> select * from test_date;
+---------------------+
| v_date |
+---------------------+
| 2015-10-09 15:47:37 |
| 2015-10-19 00:00:00 |
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
+---------------------+
4 rows in set (0.00 sec)
mysql> select * from test_date where v_date between '2015-10-09' and '2015-10-19';
+---------------------+
| v_date |
+---------------------+
| 2015-10-09 15:47:37 |
| 2015-10-19 00:00:00 |
+---------------------+
2 rows in set (0.00 sec)
(1)使用between and
mysql> select * from test_date where v_date between '2015-10-09' and '2015-10-20';
+---------------------+
| v_date |
+---------------------+
| 2015-10-09 15:47:37 |
| 2015-10-19 00:00:00 |
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
+---------------------+
4 rows in set (0.00 sec)
(2)拆分日期後查詢
mysql> select * from test_date where year(v_date)='2015' and month(v_date)='10'
and day(v_date)>=9 and day(v_date)<=19;
+---------------------+
| v_date |
+---------------------+
| 2015-10-09 15:47:37 |
| 2015-10-19 00:00:00 |
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
+---------------------+
4 rows in set (0.01 sec)
(3)僅使用運算子
mysql> select * from test_date where v_date>='2015-10-09' and v_date
+---------------------+
| v_date |
+---------------------+
| 2015-10-09 15:47:37 |
| 2015-10-19 00:00:00 |
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
+---------------------+
4 rows in set (0.00 sec)
mysql> select * from test_date where v_date>='2015-10-09' and v_date
+---------------------+
| v_date |
+---------------------+
| 2015-10-09 15:47:37 |
| 2015-10-19 00:00:00 |
| 2015-10-19 15:38:29 |
| 2015-10-19 15:38:33 |
+---------------------+
4 rows in set (0.00 sec)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26451536/viewspace-1815029/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL 的日期和時間函式MySql函式
- MySQL日期和時間函式彙總MySql函式
- 探索MySQL高階語句(數學函式、聚合函式、字串函式、日期時間函式)MySql函式字串
- Go基礎-時間和日期函式Go函式
- MySQL中日期和時間戳互相轉換的函式和方法MySql時間戳函式
- Clickhouse 時間日期函式函式
- mysql 時間相關的函式 以及日期和字串互轉MySql函式字串
- SPL 的日期時間函式函式
- MySQL 日期函式、時間函式在實際場景中的應用MySql函式
- ORACLE中日期和時間函式彙總(轉載)Oracle函式
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- MySQL函式大全(字串函式,數學函式,日期函式,系統級函式,聚合函式)MySql函式字串
- mysql日期函式總結MySql函式
- MYSQL事件使用 日期函式MySql事件函式
- MySQL-日期和資料處理函式MySql函式
- 日期和時間
- MySQL函式學習(一)-----字串函式MySql函式字串
- javascript和PHP及MYSQL時間格式化函式JavaScriptPHPMySql函式
- hive時間日期函式及典型場景應用Hive函式
- SQL SERVER 日期和時間資料型別及函式 (Transact-SQL)SQLServer資料型別函式
- Go語言標準庫time之日期和時間相關函式Go函式
- python中關於時間和日期函式的常用計算總結Python函式
- mysql 獲取當前日期函式及時間格式化引數詳解MySql函式
- 日期和時間格式
- Python 日期和時間Python
- Java日期和時間Java
- datetime日期和時間
- 《MySQL 入門教程》第 16 篇 MySQL 常用函式之日期函式MySql函式
- 關於 Date 函式獲取各類時間/日期/天數函式
- MySQL時間戳轉成日期格式MySql時間戳
- Oracle OCP(03):字元函式、數字函式和日期函式Oracle字元函式
- MYSQL學習筆記14: 函式MySql筆記函式
- Qt:獲取日期和時間QT
- 【Python基礎】日期和時間Python
- PHP 時間函式PHP函式
- Java 日期和時間 API:實用技巧與示例 - 輕鬆處理日期和時間JavaAPI
- MYSQL學習筆記7: 聚合函式MySql筆記函式
- Golang時間函式及測試函式執行時間案例Golang函式
- MySQL 獲得當前日期時間(以及時間的轉換)MySql