gpt4 book ai didi

sql - 获取包含特定表名的所有模式的列表

转载 作者:行者123 更新时间:2023-11-29 14:09:48 27 4
gpt4 key购买 nike

我看过这些问题:

但他们都没有完全回答我的问题。我正在尝试搜索整个 PostgreSQL 数据库并列出其中包含“组”表的每个模式的名称。

我在想:

SELECT * FROM information_schema.tables WHERE table_name='groups';

但是仍然缺少如何获取包含模式。

最佳答案

SELECT DISTINCT table_schema
FROM information_schema.tables
WHERE table_name='yourtablename';

关于sql - 获取包含特定表名的所有模式的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43500135/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com