自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

MySQL Date函數(shù)的正確用法

數(shù)據(jù)庫 MySQL
此文章主要向大家描述的是MySQL Date函數(shù)的實際應(yīng)用以及對其實際應(yīng)用代碼的描述,以下就是文章的主要內(nèi)容描述,望你會有所收獲。

以下的文章主要介紹的是MySQL Date函數(shù)的實際應(yīng)用其中包括如何獲取當(dāng)前時間的具體操作,Unix時間的具體應(yīng)用,時間前后、時間間隔與時間轉(zhuǎn)換的實際內(nèi)容描述,以下就是文章的主要內(nèi)容。

MySQL Date函數(shù) 1、獲取當(dāng)前時間

 

  1. MySQL> select current_timestamp();  
  2. +---------------------+  
  3. | current_timestamp() |  
  4. +---------------------+  
  5. | 2010-01-18 21:24:37 |  
  6. +---------------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select current_date();  
  9. +----------------+  
  10. | current_date() |  
  11. +----------------+  
  12. | 2010-01-18 |  
  13. +----------------+  
  14. 1 row in set (0.00 sec)  
  15. MySQL> select current_time();  
  16. +----------------+  
  17. | current_time() |  
  18. +----------------+  
  19. | 21:24:46 |  
  20. +----------------+  
  21. 1 row in set (0.00 sec)  

 

MySQL Date函數(shù) 2、Unix時間

 

  1. MySQL> select unix_timestamp();  
  2. +------------------+  
  3. | unix_timestamp() |  
  4. +------------------+  
  5. | 1263821184 |  
  6. +------------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select from_unixtime(1263821182);  
  9. +---------------------------+  
  10. | from_unixtime(1263821182) |  
  11. +---------------------------+  
  12. | 2010-01-18 21:26:22 |  
  13. +---------------------------+  
  14. 1 row in set (0.00 sec)  

 

MySQL Date函數(shù) 3、時間前后

 

  1. MySQL> select date_add(current_timestamp, interval 1 day);  
  2. +---------------------------------------------+  
  3. | date_add(current_timestamp, interval 1 day) |  
  4. +---------------------------------------------+  
  5. | 2010-01-19 21:27:53 |  
  6. +---------------------------------------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select date_add(current_time, interval 1 day);  
  9. +----------------------------------------+  
  10. | date_add(current_time, interval 1 day) |  
  11. +----------------------------------------+  
  12. | NULL |  
  13. +----------------------------------------+  
  14. 1 row in set, 1 warning (0.00 sec)  
  15. MySQL> select date_add(current_date, interval 1 day);  
  16. +----------------------------------------+  
  17. | date_add(current_date, interval 1 day) |  
  18. +----------------------------------------+  
  19. | 2010-01-19 |  
  20. +----------------------------------------+  
  21. 1 row in set (0.00 sec)  
  22. MySQL> select date_sub(current_timestamp, interval 1 day);  
  23. +---------------------------------------------+  
  24. | date_sub(current_timestamp, interval 1 day) |  
  25. +---------------------------------------------+  
  26. | 2010-01-17 21:28:41 |  
  27. +---------------------------------------------+  
  28. 1 row in set (0.00 sec)  
  29. MySQL> select date_sub(current_date, interval 1 day);  
  30. +----------------------------------------+  
  31. | date_sub(current_date, interval 1 day) |  
  32. +----------------------------------------+  
  33. | 2010-01-17 |  
  34. +----------------------------------------+  
  35. 1 row in set (0.00 sec)  
  36. MySQL> select date_sub(current_time, interval 1 day);  
  37. +----------------------------------------+  
  38. | date_sub(current_time, interval 1 day) |  
  39. +----------------------------------------+  
  40. | NULL |  
  41. +----------------------------------------+  
  42. 1 row in set, 1 warning (0.00 sec)  

 

 

 

MySQL Date函數(shù) 4、時間間隔

 

  1. MySQL> select datediff('2010-01-18','2010-01-17');  
  2. +-------------------------------------+  
  3. | datediff('2010-01-18','2010-01-17') |  
  4. +-------------------------------------+  
  5. | 1 |  
  6. +-------------------------------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select timediff('2010-01-18 12:00','2010-01-17 11:00');  
  9. +-------------------------------------------------+  
  10. | timediff('2010-01-18 12:00','2010-01-17 11:00') |  
  11. +-------------------------------------------------+  
  12. | 25:00:00 |  
  13. +-------------------------------------------------+  
  14. 1 row in set (0.00 sec)  

 

 

MySQL Date函數(shù) 5、時間轉(zhuǎn)換

 

  1. MySQL> select time_to_sec('25:00:00');  
  2. +-------------------------+  
  3. | time_to_sec('25:00:00') |  
  4. +-------------------------+  
  5. | 90000 |  
  6. +-------------------------+  
  7. 1 row in set (0.00 sec)  
  8. MySQL> select sec_to_time(90000);  
  9. +--------------------+  
  10. | sec_to_time(90000) |  
  11. +--------------------+  
  12. | 25:00:00 |  
  13. +--------------------+  
  14. 1 row in set (0.00 sec)   

 

以上的相關(guān)內(nèi)容就是對MySQL Date函數(shù)的介紹,望你能有所收獲。

【編輯推薦】

  1. MySQL數(shù)據(jù)庫安全設(shè)置的操作流程
  2. 使用MySQL管理心得講述
  3. MySQL基本操作,新手入門寶典
  4. MySQL 操作日志查看的實際操作步驟與代碼
  5. MySQL游標(biāo)的使用筆記大全
責(zé)任編輯:佚名 來源: 互聯(lián)網(wǎng)
相關(guān)推薦

2010-10-25 16:13:31

Oracle to_d

2010-04-30 17:58:55

Oracle trun

2010-04-30 10:47:26

Oracle Nvl函

2010-05-18 19:03:21

linux MySQL

2010-05-25 15:24:38

MySQL updat

2010-05-27 14:47:14

MySQL INSER

2010-06-11 14:55:17

2010-07-20 15:24:27

MS SQL Serv

2017-07-13 12:43:41

Linux命令date

2010-05-11 10:12:50

mysql數(shù)據(jù)庫sql

2010-05-31 14:16:01

MySQL數(shù)學(xué)函數(shù)

2010-08-09 09:05:41

DB2快照函數(shù)

2010-04-26 15:30:45

Oracle join

2010-04-30 11:58:45

Oracle sequ

2010-05-21 17:14:18

MySQL 數(shù)字類型

2010-06-13 15:00:23

MySQL統(tǒng)計函數(shù)

2010-06-04 11:15:23

MySQL自增主鍵

2010-05-26 15:14:39

MySQL字符串

2011-12-01 10:55:34

2010-07-13 16:48:14

SQL Server
點贊
收藏

51CTO技術(shù)棧公眾號