Я использую PostgreSQL 9.1. У меня есть имя столбца таблицы. Можно ли найти таблицы, в которых есть / есть этот столбец? Если да, то как?
sql
database
postgresql
postgresql-9.1
Хасан Икбал
источник
источник
Вы также можете сделать
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
источник
Просто:
При необходимости увеличьте смещение -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;
источник