gpt4 book ai didi

postgresql - 无法在 Postgres 中使用交叉表

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

OSX 10.9.2 上的 Postgres 9.2.1。

如果我运行以下交叉表示例查询:

CREATE EXTENSION tablefunc; 

CREATE TABLE ct(id SERIAL, rowid TEXT, attribute TEXT, value TEXT);
INSERT INTO ct(rowid, attribute, value) VALUES('test1','att1','val1');

SELECT *
FROM crosstab(
'select rowid, attribute, value
from ct
where attribute = ''att2'' or attribute = ''att3''
order by 1,2')
AS ct(row_name text, category_1 text, category_2 text, category_3 text);

我得到:错误:扩展名“tablefunc”已经存在

但是如果我注释掉 CREATE EXTENSION

我得到:错误:函数交叉表(未知)不存在

我怎样才能摆脱这个恶性循环呢?这是一个已知问题吗?

最佳答案

你可以把第一行改成:

CREATE EXTENSION IF NOT EXISTS tablefunc;

关于postgresql - 无法在 Postgres 中使用交叉表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23073037/

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