有什么方法可以列出现有 postgres 模式中与 table 相关的所有视图
Is there any way to list all the views related to a table in the existing postgres schema
我有一个包含多个模式的 Postgres 数据库。我正在尝试使用最佳数据类型优化我的数据库 tables。更多时候我以错误结束
cannot alter the type of a column used by a view
正在使用查询 alter table schema.tbl_name alter column column_name type varchar(5) using column_name::varchar(5);
有什么方法(功能)可以列出与 table 相关的所有视图吗?
使用这个查询:
select
u.view_schema schema_name,
u.view_name,
u.table_schema referenced_table_schema,
u.table_name referenced_table_name,
v.view_definition
from information_schema.view_table_usage u
join information_schema.views v on u.view_schema = v.table_schema
and u.view_name = v.table_name
where u.table_schema not in ('information_schema', 'pg_catalog')
order by u.view_schema, u.view_name
来源:Dataedo.com's article List tables used by a view in PostgreSQL database
我有一个包含多个模式的 Postgres 数据库。我正在尝试使用最佳数据类型优化我的数据库 tables。更多时候我以错误结束
cannot alter the type of a column used by a view
正在使用查询 alter table schema.tbl_name alter column column_name type varchar(5) using column_name::varchar(5);
有什么方法(功能)可以列出与 table 相关的所有视图吗?
使用这个查询:
select
u.view_schema schema_name,
u.view_name,
u.table_schema referenced_table_schema,
u.table_name referenced_table_name,
v.view_definition
from information_schema.view_table_usage u
join information_schema.views v on u.view_schema = v.table_schema
and u.view_name = v.table_name
where u.table_schema not in ('information_schema', 'pg_catalog')
order by u.view_schema, u.view_name
来源:Dataedo.com's article List tables used by a view in PostgreSQL database