如何在PostgreSQL中查找具有特定列的表


Answers:


62

您可以查询系统目录

select c.relname
from pg_class as c
    inner join pg_attribute as a on a.attrelid = c.oid
where a.attname = <column name> and c.relkind = 'r'

sql fiddle demo


1
请注意,此查询似乎不接受'%'通配符,而Ravi答案中的查询则接受。
Skippy le Grand Gourou

@SkippyleGrandGourou它确实接受“喜欢'id%'”
jutky

无论有没有通配符,这对我都不起作用,我不得不使用information.schema进行搜索
Lrawls

144

你也可以

 select table_name from information_schema.columns where column_name = 'your_column_name'

1
奇怪的是,我看到了该查询显示@RomanPekar查询未显示的表的实例。我不知道为什么会这样
肯·贝罗斯

1
@KenBellows我猜pg_class / pg_attirbute可以随着新版本的Postgresql而改变,而information_schema是在ANSI规范中定义的。因此,对于一般查询,我会说这个答案更好。有时,例如,我需要具有对象ID,在这种情况下,我需要使用特定于db-engine的表。此外,information_schema视图始终是特定于db引擎特定表的又一个步骤,有时可能会导致(稍微)较差的性能
Roman Pekar

在我提供的两种解决方案中,这是更准确的。pg_class查询错过了两个(共150个)表。information_schema查询捕获了所有表。我必须四处挖掘,以了解为什么有两个表落在联接之外。无论如何,感谢您的信息!
Thomas Altfather 1919年

7

我已经使用@Roman Pekar的查询作为基础并添加了架构名称(在我的情况下是相关的)

select n.nspname as schema ,c.relname
    from pg_class as c
    inner join pg_attribute as a on a.attrelid = c.oid
    inner join pg_namespace as n on c.relnamespace = n.oid
where a.attname = 'id_number' and c.relkind = 'r'

sql fiddle demo


1

只是:

$ psql mydatabase -c '\d *' | grep -B10 'mycolname'

放大-B偏移以获取表名(如果需要)


1

通配符支持查找包含要查找的字符串的表架构和表名称。

select t.table_schema,
       t.table_name
from information_schema.tables t
inner join information_schema.columns c on c.table_name = t.table_name
                                and c.table_schema = t.table_schema
where c.column_name like '%STRING%'
      and t.table_schema not in ('information_schema', 'pg_catalog')
      and t.table_type = 'BASE TABLE'
order by t.table_schema;

0
select t.table_schema,
       t.table_name
from information_schema.tables t
inner join information_schema.columns c on c.table_name = t.table_name 
                                and c.table_schema = t.table_schema
where c.column_name = 'name_colum'
      and t.table_schema not in ('information_schema', 'pg_catalog')
      and t.table_type = 'BASE TABLE'
order by t.table_schema;

2
修改您的答案,以包含代码说明。这个问题已有六年多的历史了,除了几个被很好地解释和解释的问题之外,已经有了一个可以接受的答案。如果您的答案没有这样的解释,那它肯定会被低估或删除。添加额外的信息将有助于证明您的答案在这里继续存在。
Das_Geek '19
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.