程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> DB2日期—時間—時間戳的運算

DB2日期—時間—時間戳的運算

編輯:DB2教程

DB2日期—時間—時間戳的運算   1、日期值的運算。 在日期上增加或者減去年,月,日時,可直接在增加或者減少的值後面直接跟著年月日的英文單詞, 即year,month,day;大於1則使用復數形式,如下: values (current date,             --2013-03-26(current_date)         current date + 10 years,  --2023-03-26         current date - 13 years,  --2000-03-26         current date + 13 months, --2014-04-26         current date - 24 months, --2011-03-26         current date + 60 days,   --2013-05-25         current date - 26 days    --2013-02-28        )   2、時間運算 在指定時間值上面增加或者減去時分秒值,在增減數據值後面跟著:hour,minute,second。 values (current_time,              --18:59:54         current_time + 10 hours,   --04:59:54         current_time - 23 hours,   --19:59:54         current_time + 12 minutes, --19:11:54         current_time - 63 minutes, --17:56:54         current_time + 25 seconds, --19:00:19         current_time - 61 seconds  --18:58:53        )   需要說明的是,當增加或者減少的數值為浮點數的時候,只會計算整數部分, 小數部分不會影響之後的運算,先後順序:年 -> 月 -> 日 -> 時 -> 分 -> 秒 3、時間戳的運算 綜合了第1點和第2點的運算。 values (current_timestamp,                  --2013-03-26-19.47.52.414000         current_timestamp + 10.5 years,     --2023-03-26-19.47.52.414000         current_timestamp - 4 months,       --2012-11-26-19.47.52.414000         current_timestamp + 26 days,        --2013-04-21-19.47.52.414000         current_timestamp + 7 hours,        --2013-03-27-02.47.52.414000         current_timestamp - 5.2 minutes,    --2013-03-26-19.42.52.414000         current_timestamp - 1 second,       --2013-03-26-19.47.51.414000         current_timestamp + 10 microseconds --2013-03-26-19.47.52.414010        ) 來源 http://blog.csdn.net/bobo12082119/article/details/8724586

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved