I have been trying for a while now to get a similar method to GETDATE() in DB2 for i. So far I have found the following:

current date
current timestamp
current time

Would it be possible for me to:

 select specific, columns
 from table
 where datefield = current date - 1 day

Is this the most efficient way or is there some way I perhaps haven't found yet?

EDIT:

I currently have this:

WHERE datefield = - days(date('2013-10-28'))

although this isn't helpful as I will need to edit it every day the query runs.

Have now come to this:

WHERE datefield = VARCHAR_FORMAT(CURRENT TIMESTAMP, 'YYYYMMDD') - 1

Except this will not work on the first day of the month as 1 - 1 = 0 and there is no day 0 in a month...

有帮助吗?

解决方案

This will give you yesterday's date:

SELECT CURRENT DATE - 1 DAY FROM sysibm.sysdummy1

其他提示

If you want to know a certain date range as an alternative you can try the TIMESTAMPDIFF scalar function, read syntax diagramSkip visual syntax diagram The parameter: 16 indicates it will evaluate per days

The next example determines a range of 70 days as of now.

WHERE (TIMESTAMPDIFF(16, CHAR(SYSDATE- CURRENT DATE)) )<70 AND (TIMESTAMPDIFF(16, CHAR(SYSDATE- CURRENT DATE)) ) > -1

you can take a look on this link for all the details about this method which is supported by DB2: http://www-01.ibm.com/support/knowledgecenter/SSEPGG_9.7.0/com.ibm.db2.luw.sql.ref.doc/doc/r0000861.html?cp=SSEPGG_9.7.0%2F2-10-3-2-155

select dateadd(dd,-1,getdate())
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top