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.
找不到更好的方式来表达这个问题。这是交易:
我有一个固定数量的行 (x) 的表,现在我想在顶部添加 1 行并删除底部的行。什么更有效,在选择后删除所有表数据并以正确的顺序重写或相应地移动所有条目?
这样做很奇怪,但是你可以用其他方式来做。您可以在底部插入一行并从顶部删除行。通过 ID DESC 订购,您将得到您想要的。
DELETE FROM TABLE Where id = (SELECT min(id) FROM Table)