[sql] postgresql에서 특정 열이있는 테이블을 찾는 방법

PostgreSQL 9.1을 사용하고 있습니다. 테이블의 열 이름이 있습니다. 이 열이 있거나있는 테이블을 찾을 수 있습니까? 그렇다면 어떻게?



답변

시스템 카탈로그 를 쿼리 할 수 ​​있습니다 .

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


답변

당신은 또한 할 수 있습니다

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


답변

@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


답변

간단히:

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

필요한 경우 -B 오프셋을 확대하여 테이블 이름을 가져옵니다.


답변

와일드 카드 지원 찾으려는 문자열이 포함 된 테이블 스키마 및 테이블 이름을 찾습니다.

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;


답변

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;


답변