IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

date logic


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
EnjoyMF

New User


Joined: 27 May 2005
Posts: 88

PostPosted: Wed Aug 31, 2005 4:06 pm
Reply with quote

hi friends

i have a requirement where i need to find if the age is greater than 65years, if it is then i need to add one month to it...
how can this done though DB2 query..plz provide me the query if possible

Regards
prasad
Back to top
View user's profile Send private message
kvivek

New User


Joined: 09 May 2005
Posts: 51
Location: Singapore

PostPosted: Wed Aug 31, 2005 7:24 pm
Reply with quote

Quote:
if the age is greater than 65years
Code:
SELECT YEAR(CURRENT_DATE - DATE(:WS-DOB)) INTO :WS-NO-OF-YEARS FROM SYSIBM.SYSDUMMY1
Quote:
if it is then i need to add one month to it...
Code:
SELECT DATE(:WS-DOB) + 1 MONTH INTO :WS-DOB FROM SYSIBM.SYSDUMMY1


Regards,
Vivek
Back to top
View user's profile Send private message
khamarutheen

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Thu Nov 03, 2005 10:44 am
Reply with quote

hi frnd,
hope this query will give u that age det as my frnd given earlier
SELECT YEAR(CURRENT_DATE - DATE(:WS-DOB)) INTO :WS-NO-OF-YEARS FROM SYSIBM.SYSDUMMY1

then check IF WS-NO-OF-YEARS >=65 then
EXEC SQL
UPDATE SET that variable name=varname+1
END-EXEC
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Replacing 'YYMMDD' with date, varying... SYNCSORT 3
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Need to convert date format DFSORT/ICETOOL 20
No new posts Need help to append a date&tsp at... DFSORT/ICETOOL 9
No new posts Fetch data from programs execute (dat... DB2 3
Search our Forums:

Back to Top