View previous topic :: View next topic |
Author |
Message |
kirank Beginner
Joined: 21 Apr 2004 Posts: 61 Topics: 33 Location: hyderabad
|
Posted: Thu Jan 05, 2006 2:17 am Post subject: function for first day of the current year in db2 |
|
|
Hi,
Is there any function to find out the first day of the current year in db2?
Thanks. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12377 Topics: 75 Location: San Jose
|
Posted: Thu Jan 05, 2006 8:46 am Post subject: |
|
|
kirank,
Assuming that you wanted the date in CCYY-MM-DD format , the following query will give you the first day of the year.(January 1st)
Code: |
SELECT DATE(SUBSTR(CHAR(CURRENT DATE),1,4) ||
CHAR('-01') ||
CHAR('-01'))
FROM SYSIBM.SYSDUMMY1;
|
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
|
|