gpt4 book ai didi

postgresql - 在 Postgresql 中将一列的注释设置为另一列的注释

转载 作者:行者123 更新时间:2023-11-29 11:24:53 29 4
gpt4 key购买 nike

假设我在 Postgresql 中创建了一个表,并在列上添加了注释:

create table t1 (
c1 varchar(10)
);
comment on column t1.c1 is 'foo';

一段时间后,我决定添加另一列:

alter table t1 add column c2 varchar(20);

我要查找第一栏的评论内容,并关联到新栏:

select comment_text from (what?) where table_name = 't1' and column_name = 'c1'

(什么?)将成为一个系统表,但在 pgAdmin 中四处查看并在网络上搜索后,我还不知道它的名字。

理想情况下,我希望能够:

comment on column t1.c1 is (select ...);

但我觉得事情有点牵强。感谢您的任何想法。

更新:根据我在这里收到的建议,我最终编写了一个程序来自动执行传输评论的任务,作为更改 Postgresql 列数据类型的更大过程的一部分。你可以读到那个 on my blog .

最佳答案

接下来要知道的是如何获取表oid。正如您所怀疑的,我认为使用它作为评论的一部分是行不通的。

    postgres=# create table comtest1 (id int, val varchar);    CREATE TABLE    postgres=# insert into comtest1 values (1,'a');    INSERT 0 1    postgres=# select distinct tableoid from comtest1;     tableoid    ----------        32792    (1 row)    postgres=# comment on column comtest1.id is 'Identifier Number One';    COMMENT    postgres=# select col_description(32792,1);        col_description    -----------------------     Identifier Number One    (1 row)

Anyhow, I whipped up a quick plpgsql function to copy comments from one table/column pair to another. You have to createlang plpgsql on the database and use it like this:

    Copy the comment on the first column of table comtest1 to the id     column of the table comtest2. Yes, it should be improved but     that's left as work for the reader.    postgres=# select copy_comment('comtest1',1,'comtest2','id');     copy_comment    --------------                1    (1 row)
CREATE OR REPLACE FUNCTION copy_comment(varchar,int,varchar,varchar) RETURNS int AS $PROC$
DECLARE
src_tbl ALIAS FOR $1;
src_col ALIAS FOR $2;
dst_tbl ALIAS FOR $3;
dst_col ALIAS FOR $4;
row RECORD;
oid INT;
comment VARCHAR;
BEGIN
FOR row IN EXECUTE 'SELECT DISTINCT tableoid FROM ' || quote_ident(src_tbl) LOOP
oid := row.tableoid;
END LOOP;

FOR row IN EXECUTE 'SELECT col_description(' || quote_literal(oid) || ',' || quote_literal(src_col) || ')' LOOP
comment := row.col_description;
END LOOP;

EXECUTE 'COMMENT ON COLUMN ' || quote_ident(dst_tbl) || '.' || quote_ident(dst_col) || ' IS ' || quote_literal(comment);

RETURN 1;
END;
$PROC$ LANGUAGE plpgsql;

关于postgresql - 在 Postgresql 中将一列的注释设置为另一列的注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/272438/

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