I want to export a complete dataframe into a table which is already created in a database(postgresql) and contains the similar data.
I found few questions explaining about dbwrite table (....overwrite = TRUE), i don't want to overwrite the data which is already present in my table. i just want to update my table with the dataframe from r console.
can someone let me know how can i do this..
something like this
dbInsertTable(con, df, tablename = "MyTable")