Sqlite Delete Query syntax in Android

后端 未结 4 1363
不知归路
不知归路 2021-01-04 21:37

I want to write a Query to delete a row from the table. I am confused of writing the statement. I need some help in writing this. I am providing my requirement here with pla

4条回答
  •  囚心锁ツ
    2021-01-04 22:02

    mdb.delete("tablename",new String("value1=? and Value2=? and value3=?"),new String[]{value1,value2,value3});
    

提交回复
热议问题