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函式
- MySQL 日期時間函式大全MySql函式
- 【Mysql 學習】日期函式函式MySql函式
- MySql中時間和日期函式MySql函式
- MySQL 5.7關於日期和時間的函式整理MySql函式
- SQL SERVER 時間和日期函式SQLServer函式
- 日期時間函式函式
- 探索MySQL高階語句(數學函式、聚合函式、字串函式、日期時間函式)MySql函式字串
- Go基礎-時間和日期函式Go函式
- Sql Server系列:日期和時間函式SQLServer函式
- Clickhouse 時間日期函式函式
- MySQL中日期和時間戳互相轉換的函式和方法MySql時間戳函式
- mysql 時間相關的函式 以及日期和字串互轉MySql函式字串
- Sql Server函式全解(4):日期和時間函式SQLServer函式
- Sql Server函式全解(四)日期和時間函式SQLServer函式
- 使用mysql日期與時間函式輕易搞定日期與時間邏輯MySql函式
- SQL Server 裡的日期和時間函式SQLServer函式
- SPL 的日期時間函式函式
- ORACLE日期時間函式大全Oracle函式
- SQLServer時間日期函式速查SQLServer函式
- php學習5-時間和日期PHP
- C/C++中的日期和時間函式C++函式
- MySQL 日期函式、時間函式在實際場景中的應用MySql函式
- MySQL時間函式MySql函式
- MySQL學習記錄--生成時間日期資料MySql
- ORACLE中日期和時間函式彙總(轉載)Oracle函式
- SQL 10 函式 3 日期時間函式 - 5 計算日期差額SQL函式
- WPS表格日期與時間函式函式
- 學習筆記-----一時間函式筆記函式
- mysql時區與時間函式MySql函式
- javascript時間物件Date常用時間日期函式簡單分享JavaScript物件函式
- mysql中的時間函式MySql函式
- mysql幾個時間函式MySql函式
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- MySQL函式大全(字串函式,數學函式,日期函式,系統級函式,聚合函式)MySql函式字串
- js Date()建構函式建立時間日期物件JS函式物件