db2时间函数

获取当前日期: 
select current date from sysibm.sysdummy1; 
values current date;

--获取当前时间 
select current time from sysibm.sysdummy1; 
values current time;

--获取当前时间戳 
select current timestamp from sysibm.sysdummy1; 
values current timestamp;

--要使当前时间或当前时间戳记调整到 GMT/CUT,则把当前的时间或时间戳记减去当前时区寄存器:

values current time -current timezone; 
values current timestamp -current timezone;

--获取当前年份

values year(current timestamp);

--获取当前月 
values month(current timestamp);

--获取当前日 
values day(current timestamp);

--获取当前时 
values hour(current timestamp);

--获取分钟 
values minute(current timestamp);

--获取秒 
values second(current timestamp);

--获取毫秒 
values microsecond(current timestamp);

--从时间戳记单独抽取出日期和时间

values date(current timestamp); 
values VARCHAR_FORMAT(current TIMESTAMP,‘yyyy-mm-dd‘); 
values char(current date); 
values time(current timestamp);

--执行日期和时间的计算

values current date+1 year; 
values current date+3 years+2 months +15 days; 
values current time +5 hours -3 minutes +10 seconds;

--计算两个日期之间的天数

values days(current date)- days(date(‘2010-02-20‘));

--时间和日期换成字符串

values char(current date); 
values char(current time);

--要将字符串转换成日期或时间值

values timestamp(‘2010-03-09-22.43.00.000000‘); 
values timestamp(‘2010-03-09 22:44:36‘); 
values date(‘2010-03-09‘); 
values date(‘03/09/2010‘); 
values time(‘22:45:27‘); 
values time(‘22.45.27‘);

--计算两个时间戳记之间的时差:

--秒的小数部分为单位 
values timestampdiff(1,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--秒为单位 
values timestampdiff(2,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--分为单位 
values timestampdiff(4,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--小时为单位 
values timestampdiff(8,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--天为单位 
values timestampdiff(16,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--周为单位 
values timestampdiff(32,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--月为单位 
values timestampdiff(64,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--季度为单位 
values timestampdiff(128,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘))); 
--年为单位 
values timestampdiff(256,char(current timestamp - timestamp(‘2010-01-01-00.00.00‘)));

例子:

select * from wx_account where date(opendate)=‘2012-04-22‘;

时间: 2024-12-23 09:53:31

db2时间函数的相关文章

DB2时间函数大全

DB2时间函数是我们最常见的函数之一,下面就为您介绍一些DB2时间函数,供您参考,希望可以让您对DB2时间函数有更多的了解. 1 --获取当前日期: 2 3 select current date from sysibm.sysdummy1; 4 values current date; 5 6 --获取当前日期 7 select current time from sysibm.sysdummy1; 8 values current time; 9 --获取当前时间戳 10 select cu

DB2日期和时间函数汇总

上一篇提到过在DB2中,可以通过SYSIBM.SYSDUMMY1.SYSIBM.DUAL获取寄存器中的值,也可以通过VALUES关键字获取寄存器中的值.则在这篇中,我们直接用VALUES关键字来看看这些函数. 1.CURRENT DATE获取当前日期:CURRENT TIME获取当前时间:CURRENT TIMESTAMP获取当前时间戳(含年.月.日.时.分.秒):YEAR()获取年:MONTH()获取月:DAY()获取日: HOUR()获取小时:MINUTE()获取分钟:SECOND()获取秒

DB2 日期时间函数

db2日期时间函数 (DATE(TRIM(CHAR(DT#11Y))||'-'||TRIM(CHAR(DT#11M))||'-'||TRIM(CHAR(DT#11D))) BETWEEN DATE('" & strDate1 & "') AND DATE('" & strDate2 & "')) (Y > y) OR ((Y = y) AND (M > m)) OR ((Y = y) AND (M = m) AND (D

SQL必备-ORACLE-SQSLSERVER-DB2时间函数及常见函数总结

SQLSERVER 时间篇:*************************************************************一.时间函数 --getdate 获取当前时间 select getdate() --dateadd 原有时间加: 2013-02-17 13:20:16 此时间加12个月  select dateadd(MONTH,12,'2013-02-17 13:20:16')  --返回:2014-02-17 13:20:16.000  (参数month可

DB2 OLAP函数的使用

说起 DB2 在线分析处理,可以用很好很强大来形容.这项功能特别适用于各种统计查询,这些查询用通常的SQL很难实现,或者根本就无发实现.首先,我们从一个简单的例子开始,来一步一步揭开它神秘的面纱,请看下面的SQL: [c-sharp] view plain copy SELECT ROW_NUMBER() OVER(ORDER BY SALARY) AS 序号, NAME AS 姓名, DEPT AS 部门, SALARY AS 工资 FROM ( --姓名    部门  工资 VALUES (

db2 OLAP函数使用

说起 DB2 在线分析处理,可以用很好很强大来形容.这项功能特别适用于各种统计查询,这些查询用通常的SQL很难实现,或者根本就无发实现.首先,我们从一个简单的例子开始,来一步一步揭开它神秘的面纱,请看下面的SQL: SELECT ROW_NUMBER() OVER(ORDER BY SALARY) AS 序号, NAME AS 姓名, DEPT AS 部门, SALARY AS 工资 FROM ( --姓名    部门  工资 VALUES ('张三','市场部',4000), ('赵红','技

[转]DB2时间类函数

Src URL:http://www.cnblogs.com/wanghonghu/archive/2012/05/25/2518604.html 1.db2可以通过SYSIBM.SYSDUMMY1.SYSIBM.DUAL获取寄存器中的值,也可以通过VALUES关键字获取寄存器中的值. SELECT 'HELLO DB2' FROM SYSIBM.SYSDUMMY1;--HELLO DB2 SELECT 'HELLO DB2' FROM SYSIBM.DUAL;--HELLO DB2 VALUE

C/C++时间函数的使用

来源:http://blog.csdn.net/apull/article/details/5379819 一.获取日历时间time_t是定义在time.h中的一个类型,表示一个日历时间,也就是从1970年1月1日0时0分0秒到此时的秒数,原型是: typedef long time_t;        /* time value */可以看出time_t其实是一个长整型,由于长整型能表示的数值有限,因此它能表示的最迟时间是2038年1月18日19时14分07秒. 函数time可以获取当前日历时

错误处理和时间函数

错误处理和时间函数 一.错误处理 a)         错误报告级别 语法错误: error 会给一个致命错误  终止程序继续执行 运行时错误: notice warning  运行代码的时候错了 有错误提示,但是他们不会影响程序运行 但是结果不是我们想要的 逻辑错误:逻辑出现错误  最大的难就 就是不报错  不好排除 notice: 本身不是一个错误  只是一个提示 这个错误可以忽略 warning: 警告只要产生warning错误 程序的执行结果就不是我们想要的,但是这个级别的错误,不会终止