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'
@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'
단순:
$ 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
'programing' 카테고리의 다른 글
SUMIF 날짜가 특정 월에 해당하는 Excel 공식 (0) | 2023.05.02 |
---|---|
iOS 프로젝트의 최신 버전을 코드로 가져오려면 어떻게 해야 합니까? (0) | 2023.05.02 |
MongoDB 복제 세트에서 기본 DB 서버 IP를 아는 방법은 무엇입니까? (0) | 2023.05.02 |
각도를 사용하여 새 탭에서 링크를 여는 방법은 무엇입니까? (0) | 2023.05.02 |
Windows에서 SSH에서 Vagrant 박스로? (0) | 2023.04.27 |