I am trying to delete a row from a table but i have three WHERE clauses and i am not sure if i am using the correct statement.
db.delete(DBAdapter.TableName, "Id="+ Id
+" AND WHERE QstnrId = "+Integer.parseInt(QuestionnaireId)
+" AND WHERE QstnId = "+Integer.parseInt(QuestionId), null);
I am almost certain i am not using the statement correctly. Please assist?