我有一个数据框,我需要使用 RPostgreSQL 包将其写为 R 中的临时表。
例子:
>data(USArrests)
#Assuming that we have already established a connection to the postgres db
#Let conn be the postgres connection object
>dbWriteTable(conn, "temp_table_data", USArrests, temp.table=TRUE)
这不起作用。参数 temp.table 似乎被忽略了。
如果没有办法处理dbWriteTable,是否有办法将数据帧写为临时表?