标签: r dplyr dtplyr
我正在使用dtplyr软件包连接到数据库。
这有效:
con <- connect_db() # this is function with database host, username, pass, dbname df <- tbl(con, "table1")
但这不起作用:
con <- connect_db() table_name <- "table1" df <- tbl(con, table_name)
我尝试使用!!table_name,但没有帮助。
!!table_name