update方法的第三第四个方法自己琢磨了半天还是没弄懂,可以举几个例子具体说明一下第三第四个参数吗 比如这样一张表 id name age garden 1 Tom 15 6 2 Mike 16 6 3 Tim 15 7 比如我要让所有grade为6的age修改为15应该怎么写? 想让所有age为15的name为Tom又应该怎么写?
如果會簡單的sql語句,第三個參數where id = 第四个参数 1 api 的解釋第三個the optional WHERE clause to apply when updating. Passing null will update all rows.第四個You may include ?s in the where clause, whichere clause, which will be replaced by the values from whereArgs. The values will be bound as Strings. 你可以看一下這個官方文檔中文版
如果會簡單的sql語句,第三個參數
where id =
第四个参数1
api 的解釋第三個the optional WHERE clause to apply when updating. Passing null will update all rows.第四個You may include ?s in the where clause, whichere clause, which will be replaced by the values from whereArgs. The values will be bound as Strings.
你可以看一下這個官方文檔中文版
第三個參數是
update
时sql
语句的条件名,第四个参数是update
时sql
語句的條件值