मैं 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'
मैंने एक आधार के रूप में @ रोमन पाकर की क्वेरी का उपयोग किया है और स्कीमा नाम जोड़ा है (मेरे मामले में प्रासंगिक)
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'
वाइल्डकार्ड समर्थन तालिका स्कीमा और तालिका नाम ढूंढें जिसमें वह स्ट्रिंग है जिसे आप ढूंढना चाहते हैं।
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;