我需要帮助,以R数据帧“ Correct_data”(其列名为“ Id”和“ IsDeleted”)中的值更新“ IsDeleted”列。
基本上,我想通过连接mysql表和R数据帧来运行更新mysql语法(针对特定ID)。
通过使用以下语法,我可以更新该值,但我想使其具有动态性。
listID<- c(ids_to_update$UnitId)
dbExecute(con,paste("Update unit set isDeleted=1 where Id in(",paste("'",listID,"'", collapse = ",",sep = ""),paste(")")))