Min doktorandhandledare hjälpte mig att ta reda på hur jag skulle göra detta. I grund och botten skrev han:
for ID_loop in info$ID {
print(ID_loop)
whattoinsert <- info %>% select(ID) %>% distinct()
query = paste("USE schemas.info",
ID_loop,
sep = " ")
print(query)
results <- DBI:dbGetQuery(con,query)
dbWriteTable(con, "info",whattoinsert,overwrite = TRUE)
}
Kudus till honom :)