gpt4 book ai didi

postgresql - 有什么方法可以列出与现有 postgres 模式中的表相关的所有 View

转载 作者:行者123 更新时间:2023-12-05 04:43:57 25 4
gpt4 key购买 nike

我有一个包含多个模式的 Postgres 数据库。我正在尝试使用最佳数据类型优化我的数据库表。更多时候我以错误结束

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);

有什么方法(功能)可以列出与表相关的所有 View 吗?

最佳答案

使用这个查询:

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的文章List tables used by a view in PostgreSQL database

关于postgresql - 有什么方法可以列出与现有 postgres 模式中的表相关的所有 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69458819/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com