postgres 选择当前搜索路径中的所有表?

发布于 2024-10-18 22:21:29 字数 243 浏览 2 评论 0原文

我需要在当前架构搜索路径中找到所有可见表。我尝试过:

SELECT *
FROM pg_tables
AND schemaname IN (SHOW search_path)

但出现错误:

PGError:错误:“search_path”处或附近的语法错误 第 3 行:AND schemaname IN (SHOW search_path)

I need to find all the visible tables in my current schema search path. I tried:

SELECT *
FROM pg_tables
AND schemaname IN (SHOW search_path)

but it errors with:

PGError: ERROR: syntax error at or near "search_path"
LINE 3: AND schemaname IN (SHOW search_path)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拔了角的鹿 2024-10-25 22:21:29

pg_*_is_visible() 函数集就是为此目的而提供的。这是使用它们的一种方法:

SELECT * FROM pg_class WHERE relkind IN ('r', 'v') AND pg_table_is_visible(oid);

The pg_*_is_visible() set of functions is provided for this purpose. Here is one way to use them:

SELECT * FROM pg_class WHERE relkind IN ('r', 'v') AND pg_table_is_visible(oid);
小梨窩很甜 2024-10-25 22:21:29

您可以使用 CURRENT_SCHEMAS() 函数获取当前架构。它将为您解析搜索路径中的任何引用(例如 $user

 SELECT * FROM pg_tables WHERE schemaname = ANY (CURRENT_SCHEMAS(false));

您还可以使用更标准的 information_schema 伪模式。

 SELECT * FROM information_schema.tables WHERE table_schema = ANY (CURRENT_SCHEMAS(false));

You can get the current schemas using CURRENT_SCHEMAS() function. It will resolve any references in the search path for you (e.g. $user)

 SELECT * FROM pg_tables WHERE schemaname = ANY (CURRENT_SCHEMAS(false));

You could also use the more standard information_schema pseudo-schema.

 SELECT * FROM information_schema.tables WHERE table_schema = ANY (CURRENT_SCHEMAS(false));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文