sqlite consulta android con múltiples donde

Aquí está mi código sqlite actual:

Cursor c = sqlDatabase.rawQuery("select docid as _id, recipeID from " + TABLE_RECIPE_NAME + 
                " where " + KEY_ownerID + " = ? ", new String[] { ownerID});

Funciona bien, pero cuando intenté agregar varios dónde a algo como esto:

Cursor c = sqlDatabase.rawQuery("select docid as _id, recipeID from " + TABLE_RECIPE_NAME + 
                " where " + KEY_ownerID + " = ?, " + KEY_partnerID + " = ?, " + KEY_advertiserID + " = ?, " + KEY_chefID + " = ?", new String[] { ownerID, partnerID, advertiserID, chefID });

Devuelve un error. Entonces, ¿cómo trato con múltiples?

Respuestas a la pregunta(8)

Su respuesta a la pregunta