我有正常日期格式的表格
表1
ID Date
123 08/01/2015
456 09/01/2015
但我需要以这种格式看到这个日期。
ID Date
123 AUG 01 2015
456 SEP 01 2015
答案 0 :(得分:0)
使用to_char()
格式化日期:
select id, to_char(date, 'MON DD YYYY')
from the_table;
有关to_char()的更多详细信息,请参见手册:
https://docs.oracle.com/cd/E11882_01/server.112/e41084/functions200.htm#SQLRF06129