If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Fetch date from timestamp (DB2 Iseries)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-28-10, 00:21
asp_crazy_guy asp_crazy_guy is offline
Registered User
 
Join Date: Mar 2009
Posts: 73
Fetch date from timestamp (DB2 Iseries)

Hello guys,

Is there any way to fetch only date in the format dd/MM/yyyy from a time stamp field in table from db2 through sql in (V5R4) ?
Reply With Quote
  #2 (permalink)  
Old 01-28-10, 01:11
tonkuma tonkuma is online now
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,193
CHAR(DATE(timestamp_expression), USA) will return ’mm/dd/yyyy’.

CHAR(DATE(timestamp_expression), EUR) will return ’dd.mm.yyyy’.

REPLACE(CHAR(DATE(timestamp_expression), EUR), '.', '/') will return ’dd/mm/yyyy’.

Please see "DB2 for i5/OS SQL Reference Version 5 Release 4" Chapter 3. Built-in functions.

Last edited by tonkuma; 01-28-10 at 01:13. Reason: Added reference manual.
Reply With Quote
  #3 (permalink)  
Old 01-28-10, 02:13
asp_crazy_guy asp_crazy_guy is offline
Registered User
 
Join Date: Mar 2009
Posts: 73
Thumbs up Thanks

Quote:
Originally Posted by tonkuma View Post
CHAR(DATE(timestamp_expression), USA) will return ’mm/dd/yyyy’.

CHAR(DATE(timestamp_expression), EUR) will return ’dd.mm.yyyy’.

REPLACE(CHAR(DATE(timestamp_expression), EUR), '.', '/') will return ’dd/mm/yyyy’.

Please see "DB2 for i5/OS SQL Reference Version 5 Release 4" Chapter 3. Built-in functions.
Thanks for the reply tonkuma, I cant believe I actually did as you advised seems like I am catching up lol well thanks for the reference and all the help you do always.
Cheers !
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On