如果存在总是覆盖?
我的表如下所示:
_id, subID, textInput, attribute1, attribute2
当我创建一条新记录时,它保存 5 行...全部具有相同的 subID。如果我使用相同的 subID 创建另一条记录,它会保存 5 行,因此该 subID 总共有 10 行。
我想要的是,如果 subID 已经存在,则只覆盖已经存在的行。我该怎么做呢?
My table looks like:
_id, subID, textInput, attribute1, attribute2
When I create a new record, it saves 5 rows... all with the same subID. If I create another record with the same subID, it saves 5 rows, giving me a total of 10 rows for that subID.
What I would like is if subID already exists to just overwrite the rows that are already there. How would I go about doing that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 INSERT OR REPLACE,但必须在 subID 上放置唯一索引。
或者,您可以查询表中的 subID,如果找到,则使用简单的 UPDATE 代替。如果未找到,请使用标准 INSERT。
You can use INSERT OR REPLACE, but you'll have to put a unique index on subID.
Alternatively, you can query the table for the subID and if found, use a simple UPDATE instead. If not found, use an standard INSERT.
尝试插入或替换命令。有关详细信息,请参阅 http://www.sqlite.org/lang_conflict.html。
Try the
INSERT OR REPLACE
command. See http://www.sqlite.org/lang_conflict.html for details.