删除表中的所有值

发布于 2024-11-02 08:10:15 字数 61 浏览 1 评论 0原文

在iPhone应用程序中,是否可以通过sqlite删除表中的所有值?如果是这样,那么查询它是什么?请帮帮我。

In an iPhone application, is it possible to delete all the values in a table through sqlite? If so, what is the query for it? Please help me out.

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

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

发布评论

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

评论(2

勿忘初心 2024-11-09 08:10:15

假设它使用标准 SQL,那就很简单:

delete from MYTABLE

其中 MYTABLE 是您要清除的表的名称。我知道在桌面上使用 SQLite3,您还可以随后运行真空操作来压缩数据库。我不能说这是否在 iPhone 上可用,但您应该调查一下,因为删除并不一定会释放任何空间。

Assuming it uses standard SQL, that would simply be:

delete from MYTABLE

where MYTABLE is the name of the table you want to clear. I know with SQLite3 on the desktop you can also run a vacuum operation afterwards to compact the database. Whether that's available on the iPhone, I can't say, but you should investigate it since the delete doesn't necessarily free up any space.

幼儿园老大 2024-11-09 08:10:15

快速 DELETE FROM tablename 应该可以做到

A quick DELETE FROM tablename should do it

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