Format date to string

2019-03-31 08:13发布

问题:

I'm trying to format a db2 date into a string as "YYYY/MM/DD".

The best I got so far is:

SELECT CAST(YEAR(MYDATE) AS VARCHAR(4)) || '/'
|| CAST(MONTH(MYDATE) AS VARCHAR(2))    || '/'
|| RIGHT('00' || CAST(DAY(MYDATE) AS VARCHAR(2)), 2) FROM MYCALENDAR

Is there a better, terser way to do this?

ps: Toying around with locales is not an option.

回答1:

According to the IBM documentation the following should work:

 SELECT VARCHAR_FORMAT(MYDATE, 'YYYY/MM/DD') FROM MYCALENDAR;


标签: sql db2