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

year calculation in date field with numeric value in sql??


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Sanath sekhar Reddy N

New User


Joined: 31 Oct 2012
Posts: 30
Location: INDIA

PostPosted: Mon Mar 25, 2013 8:48 pm
Reply with quote

Hi

Iam having requirement of below query.

to add date to the numeric value and compare with the date .
like as below

start-date + term < = 01.04.2013

where for eg start-date is 01.01.1998 and term is value 14 ,then 01.01.1998 + 14 years = 01.01.2012 < = 01.04.2013 ,then this record should be extracted in output from database table.
how to query this in sql,pls help me


regards
Sanath
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Mon Mar 25, 2013 9:01 pm
Reply with quote

So what are the columns of the table and the host variables? (Names and definitions, please).
Back to top
View user's profile Send private message
saiprasadh

Active User


Joined: 20 Sep 2006
Posts: 154
Location: US

PostPosted: Mon Mar 25, 2013 9:08 pm
Reply with quote

Sanath,


Please try below mentioned SQL


Code:
select * from table_name
where
date(Start_date) + 14 Year <= '2013-01-04'
Back to top
View user's profile Send private message
Sanath sekhar Reddy N

New User


Joined: 31 Oct 2012
Posts: 30
Location: INDIA

PostPosted: Mon Apr 01, 2013 5:18 pm
Reply with quote

Hi

I have tried this

select * from table_name
where
Date-field + 14 Year <= '2013-01-04'

This worked.

Thanks Sai for the timely response, Thanks to Akatsukami
also who responded in time .
Thank you very much.

Regards
Sanath sekhar reddy
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 Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
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 Null values are considered in Total c... DFSORT/ICETOOL 6
Search our Forums:

Back to Top