I\'m trying to batch delete some items in a table.
String ids = { \"1\", \"2\", \"3\" }; mContentResolver.delete(uri, MyTables._ID + \"=?\", ids); <
String sqlCommand = String.format("DELETE FROM %s WHERE %s IN (%s);", TABLE_NAME, KEY_ID, 1,2,3); db.execSQL(sqlCommand);