TO_CHAR(SYSDATE, 'MONTH DDSPTH') : Date Format « Date Timezone « Oracle PL / SQL






TO_CHAR(SYSDATE, 'MONTH DDSPTH')

 
SQL>
SQL> SELECT TO_CHAR(SYSDATE, 'MONTH DDSPTH')
  2  FROM DUAL;

TO_CHAR(SYSDATE,'MONTHDD
------------------------
JUNE      NINETEENTH

SQL>
SQL>

 








Related examples in the same category

1.format parameter options available
2.Change the original date format in the TO_CHAR function
3.to_char( sysdate, 'HH24:MI:SS' )
4.select to_char( sysdate, 'DD/MM/YY HH24:MI:SS' ) "Right Now"
5.select to_char(sysdate,'DD-MON-YY HH24:MI:SS' ) "Right Now"
6.Use to_char to format a date type column
7.Combine to_char and trunc with date value
8.to_char(order_date, 'hh24:mi:ss')
9.Use string returned to_char from date type column in where clause
10.Get the number of days in a month with to_char
11.Converting a DATE to Another Language
12.SELECT TO_CHAR(SYSDATE, 'MM-DD-YYYY HH24:MI:SS') NOW
13.TO_CHAR(SYSDATE, 'MONTH DDTH')
14.TO_CHAR(SYSDATE, 'MONTH DDSP')
15.INITCAP(RTRIM(TO_CHAR(SYSDATE, 'MONTH'))) ||' ' ||TO_CHAR(SYSDATE, 'DDTH')
16.initcap(rtrim(to_char(sysdate, 'MONTH'))) ||' ' || initcap(to_char(sysdate, 'DDSPTH'))
17.INITCAP(RTRIM(TO_CHAR(SYSDATE, 'MONTH')))
18.to_char(LAST_STOCK_DATE, 'MON DD, YYYY HH24:MI')