在 SimpleDB 中的单个查询中删除所有 ItemsName()

发布于 2024-09-16 03:04:25 字数 103 浏览 4 评论 0原文

嗨,

我想删除 simpledb 中单个查询中的所有 ItemName。 在简单数据库中是否可能。如果可能,请给出删除简单数据库中所有项目的查询

谢谢 森蒂尔

HI,

I want to delete all ItemNames in single query in simpledb.
whether it's possible in simple db.If possible please give the query for deleting all items in simple DB

Thanks
senthil

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

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

发布评论

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

评论(3

逆夏时光 2024-09-23 03:04:26

SimpleDB 没有任何方法可以通过单个查询删除多条记录,并且没有相当于“TRUNCATE TABLE”的方法。

您的选择是一次删除一个记录或删除整个域。

SimpleDB doesn't have any way to delete multiple records with a single query, and there is no equivalent to 'TRUNCATE TABLE'.

Your options are either to delete records one at a time or to delete the entire domain.

心奴独伤 2024-09-23 03:04:26

使用 DeleteDomain 操作删除整个域。您可以随后使用 CreateDomain 重新创建域。

Use the DeleteDomain operation to delete an entire domain. You can re-create the domain using CreateDomain afterward.

雪化雨蝶 2024-09-23 03:04:26

SimpleDB 现在支持批量删除: http://docs.amazonwebservices.com/AmazonSimpleDB/latest /DeveloperGuide/SDB_API_BatchDeleteAttributes.html

但一次只能执行 25 个。

如果您想删除整个域,请按照 Scrappydog 的建议删除该域。比一一删除要快得多。

SimpleDB supports batch delete now: http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/SDB_API_BatchDeleteAttributes.html

But you can only do 25 at a time.

If you want to delete the entire domain, do as Scrappydog suggest and delete the domain. Much faster than deleting one by one.

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