我试图在 Oracle 中将日期从 YYYYMMDD 转换为 DD-Mon-YYYY ,但 to_char
或 to_Date
不起作用。你能给些建议么?select to_date(20150324,'DD-Mon-YY') from dual;select to_char(20150324,'DD-Mon-YY') from dual;
我收到一条错误消息:- ORA-01861: literal does not match format string
最佳答案
使用 to_char
和 to_date
的组合:
select to_char (to_date('20150324','YYYYMMDD'), 'DD-Mon-YY') from dual;
您的错误是,您使用了错误的日期模式。此外,建议添加
''
,尽管在这种情况下它可以在没有它们的情况下工作。检查 this Fiddle 。
关于sql - 如何在oracle中将YYYYMMDD转换为DD-Mon-YYYY?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29263586/