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.
假设我的数据库显示了一些具有 _id | 属性的游戏。姓名 | 播放器1 | 播放器2 | 胜1 | 胜2
现在我想实现一个增加 wins1 或 wins2 的方法(由于参数)。但是我不知道如何在不重新输入所有其他值的情况下编辑单个值。我怎样才能做到这一点?
您需要编写一个 sql 更新查询。
例子:
ContentValues args = new ContentValues(); args.put(yourColumnName, newValue); db.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowID, null);