Sql Compact 3.5:限制列中的行数
我有一个表,其中包含以下形式的行:时间戳数据: 我想只保留表中最新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里
N = 30
。您可以将数字 30 替换为您想要保留的任何数字。Here
N = 30
. You can replace the number 30 by any number you want to retain.