0
我需要使用R將數據寫入postgres數據庫表。如果數據存在表中的ID,則應更新數據,否則應將新數據附加到表中。
這個我試過用「RPostgreSQL」套餐,我得到這個錯誤信息我們如何使用R將數據寫入postgres數據庫表?
dbWriteTable(con, 'credit', credit,overwrite=TRUE,row.names=FALSE,append=TRUE)<br>
Error in postgresqlWriteTable(conn, name, value, ...) :overwrite and append cannot both be TRUE
是它的工作正常。 – Pirinthan