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

SQL query for DATE formatting


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

New User


Joined: 24 Nov 2007
Posts: 7
Location: ABC

PostPosted: Tue Sep 23, 2008 6:56 pm
Reply with quote

HI..

I've a date coumn in MMYYYY format..bt i need the output in YYYYMM format..can anyone suggest an SQL query..

Thanks.
Back to top
View user's profile Send private message
ashimer

Active Member


Joined: 13 Feb 2004
Posts: 551
Location: Bangalore

PostPosted: Tue Sep 23, 2008 9:22 pm
Reply with quote

you can use the query

SELECT SUBSTR(DATE_COL,3,4)||SUBSTR(DATE_COL,1,2) FROM TABLE

P.S: MMYYYY is not a valid date format ....
Back to top
View user's profile Send private message
Neeraj Kumar

New User


Joined: 24 Nov 2007
Posts: 7
Location: ABC

PostPosted: Wed Sep 24, 2008 2:36 pm
Reply with quote

thanx..

actually this column is not accepting date from system..its just like another column..having MMYYYY format..coz DD is not required..
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Wed Sep 24, 2008 3:43 pm
Reply with quote

what you are saying is that you have a CHAR column that contains a MMYYY formated value and you want to have the result be YYMMM.

Ashimer gave you a very workable solution to re-format your char data.
Back to top
View user's profile Send private message
Neeraj Kumar

New User


Joined: 24 Nov 2007
Posts: 7
Location: ABC

PostPosted: Wed Sep 24, 2008 4:15 pm
Reply with quote

yeah..rite..and thanx.. the above query is working fine..
earlier i was using cobol temp working storage variables for reformatting..
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 RC query -Time column CA Products 3
No new posts Need to convert date format DFSORT/ICETOOL 20
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top