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.
我有一个没有索引行的表,也没有特定的列......
让我们说“城市,PersonName,PersonAge”。我需要获取插入该表的最后5 个人...
我如何在 DB2 中做到这一点?
我试过了
select * from PEOPLE fetch first 5 rows only
这工作完美......但不知道如何用最后一行来做到这一点......
您不能选择最后插入的 5 行,数据库不会跟踪这一点。您需要某种自动递增的 ID 或时间戳,并按该列的降序排列。