我正在尝试查看任何函数/序列中是否存在特定列。我找到了一个可以搜索表格的脚本,那里有什么可以让我搜索函数/序列(通常是理想的任何地方)吗?
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 = 'product_id'
and t.table_schema not in ('information_schema', 'pg_catalog')
order by t.table_schema;
以上可以向我显示具有product_id
列的视图/表。
目前正在使用 Postgres 12。似乎找不到可以列出函数/序列的。