Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 SimpleDB 中按属性删除而不在查询字符串中提供 ItemName 参数吗?我存储数据的方式是项目名称是 UUID,所以我不知道要删除的数据的 UUID。有没有办法只指定一个属性并让它删除所有具有该属性的项目?
没有项目名称就无法删除,但您可以使用 SELECT 来获取要删除的项目:
select itemName() from MyDomain where MyAttribute = 'foo'