programing

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

bestprogram 2023. 5. 2. 23:01

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

저는 Postgre를 사용하고 있습니다.SQL 9.1.테이블의 열 이름을 알고 있습니다.이 열이 있는 테이블을 찾을 수 있습니까?만약 그렇다면, 어떻게?

또한 할 수 있습니다.

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

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

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

@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;

언급URL : https://stackoverflow.com/questions/18508422/how-to-find-a-table-having-a-specific-column-in-postgresql