当前位置: 代码迷 >> DB2 >> 近三天解决思路
  详细解决方案

近三天解决思路

热度:3700   发布时间:2013-02-26 00:00:00.0
近三天
TIMESTAMP类型 的日期,请列出近三天的日期 数据 DB2

------解决方案--------------------------------------------------------
current是当前时间
你要求的是两个时间差小于3?
那应该用
values timestampdiff (16, char(timestamp('2010-01-15 00:00:00')-timestamp('2010-01-29 00:00:00')))
------解决方案--------------------------------------------------------
select current date - 3 days from sysibm.dual -- 取得三天前的日期
try
select * from ticket where xxx > current date - 3 days
  相关解决方案