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 plain sql statement.
(Pseudo code)
delete from tablename where value =="string1" && value2 == "string2" && value3 == "string3";
I want to write this in the Sqlite syntax for android db.delete(tablename, whereclause, whereargs);.
I would be thankful for your help.