문제

I need to display the Date in words. For example 27-JUL-1991 should display like Twenty seven of JULY, Nineteen Hundred ninety one

How can I achieve this in oracle?

도움이 되었습니까?

해결책

Try this

SELECT TO_CHAR (column_name,'HHsp:MIspth AM ddspth/mmspth/yyyyspth') 
FROM table

It gives you everything.. you can modify as you want...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top