将 varchar2 转换为数字不会产生正确的结果顺序

发布于 2024-10-21 05:27:17 字数 310 浏览 0 评论 0原文

你好,我正在开发一个oracle DB,它的表id为varchar2,实际上只保存数字,例如2000、30201。现在我需要将这些值作为数字进行比较,所以我使用TO_NUMBER()函数,但结果仍然不成功。示例代码如下。非常感谢任何帮助。

SELECT ID FROM facty WHERE to_number(ID)>2 ORDER BY ID

当前结果: 11, 4, 5, 6, 8, 9

我需要它来生成 4, 5, 6, 8, 9,11

Hello I am working on an oracle DB which has table id as varchar2 which actually holds numbers only e.g. 2000, 30201. Now I need to compare these values as numbers so I use the TO_NUMBER() function but the results still come out unsuccessfull. Example code is below. Any help is deeply appreciated.

SELECT ID FROM facty WHERE to_number(ID)>2 ORDER BY ID

current result:
11, 4, 5, 6, 8, 9

I need it to produce 4, 5, 6, 8, 9,11

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

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

发布评论

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

评论(1

筱果果 2024-10-28 05:27:17

不要使用 Oracle,但我猜您还需要在 ORDER BY 上包含 to_number(id) 。您当前的查询 ORDER BY 使用 varchar 字段,而不是数字转换。

Don't use Oracle, but I'm guessing you need to include the to_number(id) on the ORDER BY as well. Your current query ORDER BY uses the varchar field, not the numeric conversion.

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