Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 RODBC 函数odbcConnect,我们将 R 与 SQL Express 2008 数据库连接起来。
使用sqlFetch函数在 R 中导入表非常容易
sqlFetch(channel, sqtable, ..., colnames = FALSE, rownames = TRUE)
如果我们想要读取和导入SQL 视图,我们该怎么做呢?
来自RODBC PDF:
请注意,“表”包括 DBMS 提供的任何类似表的对象,特别是视图和系统表
因此,视图确实被系统视为表。