I am using the following code for deleting some rows from my table in Android:
sqliteDb.delete("MYTABLE", "Tel" + " = ?", new String[] { "1" });
How can I call this method for the following 3 Query types?
Delete from MYTABLE where Tel = 1 OR Tel = 2
Delete from MYTABLE where Tel = 1 AND Number = 2
Delete from MYTABLE where Tel = 1 OR Number = 2
Simply you can do like.