gpt4 book ai didi

sql - 使用评论在 postgresql 中创建 View

转载 作者:行者123 更新时间:2023-11-29 14:09:41 27 4
gpt4 key购买 nike

我用sql语句在postgres sql中创建一个 View

CREATE OR REPLACE VIEW  {ViewName} as 
Select
.....

我想问有没有什么方法可以为 View 中的列创建注释。创建 View 后,在向列添加注释时会生成错误:

ERROR: "{ViewName}" is not a table, composite type, or foreign table.

最佳答案

要在列(或 View )上定义注释,请使用 comment on :

create view some_view
as
select x as col1, y as col2, z as col3
from some_table;

然后:

comment on view some_view is 'Some View';
comment on column some_view.col1 is 'Originally column X';

关于sql - 使用评论在 postgresql 中创建 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44537656/

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