ORA-01722: 临近日期时出现无效数字错误

发布于 2024-12-12 06:00:52 字数 352 浏览 1 评论 0原文

我试图在 Oracle 表中执行此插入语句,但收到无效数字错误。甲骨文指出日期是问题所在。但我没有看到问题所在。

INSERT INTO DROPPER_VACATIONS 
VALUES (21111,
    to_char('2012-01-01','YYYY-MM-DD'),
    to_char('2012-01-01','YYYY-MM-DD'),
    to_char(sysdate,'YYYY-MM-DD'),
    'CRONUSER',
    to_char(sysdate,'YYYY-MM-DD HH:MI:SS AM'),
    'CRONUSER',
    NULL)

I am trying to execute this insert statement into an oracle table but am getting an invalid number error. Oracle is pointing at the date as the issue. But I dont see the problem.

INSERT INTO DROPPER_VACATIONS 
VALUES (21111,
    to_char('2012-01-01','YYYY-MM-DD'),
    to_char('2012-01-01','YYYY-MM-DD'),
    to_char(sysdate,'YYYY-MM-DD'),
    'CRONUSER',
    to_char(sysdate,'YYYY-MM-DD HH:MI:SS AM'),
    'CRONUSER',
    NULL)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城烟雨 2024-12-19 06:00:52

这些不是日期,而是字符。您需要 to_date 将它们转换为日期,但这很愚蠢,因为您显然需要它们作为字符。

或者您打算使用 to_date 将它们转换为日期?这是明智的,因为最好将日期存储为实际日期而不是字符。

Those are not dates, but chars. You would need to_date to convert them to dates, but that would be silly, since you apparently need them as chars anyway.

Or did you mean to use to_date to convert them to dates? That would be wise, since it is better to store dates as actual dates rather than chars.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文