Oracle/SQL - 将列表分为 3 段
我想知道如何编写一个查询将表分成 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不能继续使用 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?