Oracle/SQL - 将列表分为 3 段

发布于 2024-11-15 21:32:34 字数 141 浏览 2 评论 0原文

我想知道如何编写一个查询将表分成 3 个段。当我不得不将一个表分成 2 个时,我总是基于 rownum 并对其进行修改。我知道我可以再次使用 rownum 并根据范围进行选择,但如果每次运行查询时列表的记录计数有所不同,则必须更新它们。

有什么想法吗?

I'm wondering how I would go about writing a query to split a table into 3 segments. When I've had to split a table into 2 before I've always based it off the rownum and doing a mod on it. I know I could again use rownum and select based on ranges, but if the list varies in record count each time the queries are run they will have to be updated.

Any thoughts?

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

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

发布评论

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

评论(1

孤独岁月 2024-11-22 21:32:34

为什么不能继续使用 MOD,如 MOD(rownum, 3) = 0、1 或 2?如果 2 有效,为什么 3 不行呢?

Why can't you continue to use MOD, as in MOD(rownum, 3) = 0, 1 or 2? If it worked for 2, why not 3?

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