Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何编写查询将表拆分为 3 个段。当我不得不将一个表拆分为 2 之前,我总是基于 rownum 并对其进行修改。我知道我可以再次使用 rownum 并根据范围进行选择,但是如果每次运行查询时列表的记录数都不同,则必须更新它们。
有什么想法吗?
为什么不能继续使用MOD,比如MOD(rownum, 3) = 0, 1 or 2?如果它适用于 2,为什么不适用 3?