ORA-01861: 文字与格式字符串不匹配
我很确定这真的很愚蠢。
我不会再花 10 分钟来解决这个问题(或者更好的说法,当我再花 10 分钟来解决这个问题)时,我会在这里同时提出这个问题。
下面的语句有什么问题:
select to_date( '30/10/2009 18:27:35', 'DD/MM/YYY HH24:MI:SS') from dual
错误信息是:
Error: ORA-01861: literal does not match format string
SQLState: 22008
ErrorCode: 1861
Position: 0
I'm pretty sure this is something really silly.
Instead of spending another 10 minutes with this ( or better said, while I spend another 10 minutes with this ) I'll ask it here in parallel.
What's wrong with the following statement:
select to_date( '30/10/2009 18:27:35', 'DD/MM/YYY HH24:MI:SS') from dual
The error message is:
Error: ORA-01861: literal does not match format string
SQLState: 22008
ErrorCode: 1861
Position: 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
'DD/MM/YYY HH24:MI:SS'
尝试使用四个 Y
'DD/MM/YYYY HH24:MI:SS'
'DD/MM/YYY HH24:MI:SS'
Try this with four Y's
'DD/MM/YYYY HH24:MI:SS'