ฉันใช้ PostgreSQL 9.1 ฉันมีชื่อคอลัมน์ของตาราง เป็นไปได้ไหมที่จะหาตารางที่มี / มีคอลัมน์นี้ ถ้าเป็นเช่นนั้นอย่างไร?
ฉันใช้ 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'
คุณยังสามารถทำได้
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'
เพียงแค่:
$ psql mydatabase -c '\d *' | grep -B10 'mycolname'
ขยาย -B ออฟเซ็ตเพื่อรับชื่อตารางหากต้องการ
Wildcard Support ค้นหาสคีมาของตารางและชื่อตารางที่มีสตริงที่คุณต้องการค้นหา
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;