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
String table_name = "myTable"; String where = "value1 = 'string1'" + " AND value2 = 'string2'" + " AND value3 = 'string3'"; String whereArgs = null; mDb.delete(table_name, where, whereArgs);