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.
我正在寻找一个 R 命令来列出 PostgreSQL 服务器中的可用数据库。我在 R 中使用 RPostgreSQL 包。
我知道如何连接到服务器,但我唯一需要知道的是如何列出可用数据库的名称。
连接到服务器后,您可以使用以下查询:
dbGetQuery(con, "SELECT datname FROM pg_database WHERE datistemplate = FALSE")
con是您的连接的名称。
con