如何使用“LIMIT”从表中删除行

发布于 2024-12-11 08:12:10 字数 396 浏览 0 评论 0 原文

我在我的 iPhone 应用程序中使用 FMDB(这对它来说相当新!),并且希望将表中的行数限制为某个值。每当我插入新记录时,我想检查是否超出了某些 maxNumberOfEntries ,如果超出,则删除最旧的条目。我尝试了以下操作:

(...)        
[db beginTransaction];
[db executeUpdate: @"DELETE FROM table_name WHERE someId = ? ORDER BY date LIMIT 10", [NSNumber numberWithInt: 123], nil];
[db commit];
(...)

但似乎 sqlite 无法识别查询的“LIMIT”部分。如何在不直接指定要删除的条目的情况下删除表中一定数量的行?

I'm using FMDB in my iPhone app (pretty new to it!) and want to limit the number of rows in a table to a certain value. whenever I insert new records, I want to check if some maxNumberOfEntries is excessed and if so, delete the oldest entries. I tried the following:

(...)        
[db beginTransaction];
[db executeUpdate: @"DELETE FROM table_name WHERE someId = ? ORDER BY date LIMIT 10", [NSNumber numberWithInt: 123], nil];
[db commit];
(...)

but it seems like sqlite does not recognize the "LIMIT"-part of the query. How can I manage to delete a certain number of rows in a table without directly specifying the entry I want to delete?

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

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

发布评论

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

评论(1

£烟消云散 2024-12-18 08:12:10

我没试过这个,但可能有关系。

有一个名为 SQLITE_ENABLE_UPDATE_DELETE_LIMIT 的编译标志可以启用该功能:

http://sqlite.org /compile.html#enable%5Fupdate%5Fdelete%5Flimit

这是相关的 SO 帖子:

href="https://stackoverflow.com/questions/1824490/how-do-you-enable-limit-for-delete-in-sqlite">如何在 相关帖子,您可以在 select 语句中使用 delete where id 并在 select 中尝试 limit:

如何删除具有特定行号的数据(sqlite)

I haven't tried this but it might be related.

There's a compile flag called SQLITE_ENABLE_UPDATE_DELETE_LIMIT which enables that feature:

http://sqlite.org/compile.html#enable%5Fupdate%5Fdelete%5Flimit

Here's a related SO post:

How do you enable LIMIT for DELETE in SQLite?

On a related post, you can use delete where id in a select statement and try limit in the select:

How can I delete data with specific row number (sqlite)

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