Sql Compact 3.5:限制列中的行数

发布于 2024-10-18 01:39:43 字数 89 浏览 2 评论 0原文

我有一个表,其中包含以下形式的行:时间戳数据: 我想只保留表中最新的 N 行,并删除其余所有内容。

有没有办法指定删除除 N 个最新行之外的所有行?

I have a table with rows of the following form: Timestamp Data:
I would like to keep only newest N rows in table, and delete everything rest.

Is there a way to specify deletion of all except N newest rows?

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

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

发布评论

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

评论(1

酒与心事 2024-10-25 01:39:43
delete from table 
where id not in (
    select top 30 id from table
    order by timestampcolumn desc
)

这里N = 30。您可以将数字 30 替换为您想要保留的任何数字。

delete from table 
where id not in (
    select top 30 id from table
    order by timestampcolumn desc
)

Here N = 30. You can replace the number 30 by any number you want to retain.

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