我有一个带有 product_id 和 100 多个属性的产品表。product_id 是文本,而属性列是整数,即如果属性存在则为 1。当 Postgresql 交叉表运行时,不匹配的属性返回空值。如何用零替换空值。
SELECT ct.*
INTO ct3
FROM crosstab(
'SELECT account_number, attr_name, sub FROM products ORDER BY 1,2',
'SELECT DISTINCT attr_name FROM attr_names ORDER BY 1')
AS ct(
account_number text,
Attr1 integer,
Attr2 integer,
Attr3 integer,
Attr4 integer,
...
)
替换这个结果:
account_number Attr1 Attr2 Attr3 Attr4
1.00000001 1 null null null
1.00000002 null null 1 null
1.00000003 null null 1 null
1.00000004 1 null null null
1.00000005 1 null null null
1.00000006 null null null 1
1.00000007 1 null null null
在下面:
account_number Attr1 Attr2 Attr3 Attr4
1.00000001 1 0 0 0
1.00000002 0 0 1 0
1.00000003 0 0 1 0
1.00000004 1 0 0 0
1.00000005 1 0 0 0
1.00000006 0 0 0 1
1.00000007 1 0 0 0
一种解决方法是对结果执行 select account_number, coalesce(Attr1,0)...。但是为 100 多列中的每一列输入 coalesce 是相当不灵活的。有没有办法使用交叉表来处理这个问题?谢谢