我正在尝试crosstab
在 PostgreSQL 中创建查询,以便它自动生成crosstab
列而不是对其进行硬编码。我编写了一个函数,可以动态生成crosstab
查询所需的列列表。crosstab
这个想法是在使用动态 sql的查询中替换此函数的结果。
我知道如何在 SQL Server 中轻松做到这一点,但我对 PostgreSQL 的有限知识阻碍了我在这里的进步。我正在考虑将生成动态列列表的函数的结果存储到一个变量中,并使用它来动态构建 sql 查询。如果有人可以指导我同样的事情,那就太好了。
-- Table which has be pivoted
CREATE TABLE test_db
(
kernel_id int,
key int,
value int
);
INSERT INTO test_db VALUES
(1,1,99),
(1,2,78),
(2,1,66),
(3,1,44),
(3,2,55),
(3,3,89);
-- This function dynamically returns the list of columns for crosstab
CREATE FUNCTION test() RETURNS TEXT AS '
DECLARE
key_id int;
text_op TEXT = '' kernel_id int, '';
BEGIN
FOR key_id IN SELECT DISTINCT key FROM test_db ORDER BY key LOOP
text_op := text_op || key_id || '' int , '' ;
END LOOP;
text_op := text_op || '' DUMMY text'';
RETURN text_op;
END;
' LANGUAGE 'plpgsql';
-- This query works. I just need to convert the static list
-- of crosstab columns to be generated dynamically.
SELECT * FROM
crosstab
(
'SELECT kernel_id, key, value FROM test_db ORDER BY 1,2',
'SELECT DISTINCT key FROM test_db ORDER BY 1'
)
AS x (kernel_id int, key1 int, key2 int, key3 int); -- How can I replace ..
-- .. this static list with a dynamically generated list of columns ?