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

數據庫計算日期,統計系統時間(月)的數據

編輯:DB2教程


數據庫計算日期,統計系統時間(月)的數據   計算出本月第一天到最後一天的日期:   www.2cto.com   select  date(rtrim(char(year(min(start_time))))||'-'||rtrim(char(month(min(start_time))))||'-1') as startTime,   date(rtrim(char(year(max(start_time))))||'-'||rtrim(char(month(max(start_time)+1 month)))||'-1') as endTime from table_A   t;   統計本月數據: select sum(MONTHLY_REPAYMENTS) as totle from TABLE_A   where ID='123'   AND  date('2012-11-01') <  date(current timestamp  )  and  date('2012-12-01') > date(current timestamp)  

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