|
| |
| 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. | TO_CHAR(SYSDATE, 'MONTH DDSPTH') | | | | 16. | INITCAP(RTRIM(TO_CHAR(SYSDATE, 'MONTH'))) ||' ' ||TO_CHAR(SYSDATE, 'DDTH') | | | | 17. | initcap(rtrim(to_char(sysdate, 'MONTH'))) ||' ' || initcap(to_char(sysdate, 'DDSPTH')) | | | | 18. | INITCAP(RTRIM(TO_CHAR(SYSDATE, 'MONTH'))) | | | | 19. | to_char(LAST_STOCK_DATE, 'MON DD, YYYY HH24:MI') | | |
|