Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

get current date - 30 days

Status
Not open for further replies.

bosoxer1

Programmer
Jan 22, 2005
20
0
0
US
Need to create db2 where clause to het current day - 30 days, in the format of 2006051800 to compare against datetime field. 00 can be appended, I hope.

Thanks in advance.
 
When you say you are comparing against a datetime field, I assume you don't mean a proper db2 datetimestamp column.

The following will give you a CHAR output and assumes the local db2 default date format to be CCYY-MM-DD:

SELECT SUBSTR(CHAR(CURRENT DATE),1,4)
||
SUBSTR(CHAR(CURRENT DATE),6,2)
||
SUBSTR(CHAR(CURRENT DATE),9,2)
||'00'
FROM SYSIBM.SYSDUMMY1

Hope this helps

Marc
 
The following should also work:

select
char(curdate()-30 days-'0000-01-01'+101)
FROM SYSIBM.SYSDUMMY1
;

Marc's solution is probably more readable, however.

 
correction:

select
char(curdate()-30 days-'0000-01-01'+101)||'00'
FROM SYSIBM.SYSDUMMY1
;
 
Dan,
My solution forgot to subtract 30 days! Doh!

SELECT SUBSTR(CHAR(CURRENT DATE - 30 DAYS),1,4)
||
SUBSTR(CHAR(CURRENT DATE - 30 DAYS),6,2)
||
SUBSTR(CHAR(CURRENT DATE - 30 DAYS),9,2)
||'00'
FROM SYSIBM.SYSDUMMY1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top