如何在postgresql交叉表中用零替换空值

frebpwbc  于 2023-11-18  发布在  PostgreSQL
关注(0)|答案(2)|浏览(184)

我有一个product表,其中包含product_id和100多个属性。product_id是文本,而属性列是整数,即如果属性存在,则为1。当运行Postgresql交叉表时,不匹配的属性返回null值。如何将null替换为零?

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)..

wljmcqd8

wljmcqd81#

你可以使用coalescence:

select account_number,
       coalesce(Attr1, 0) as Attr1,
       coalesce(Attr2, 0) as Attr2,
       etc

字符串

amrnrhlw

amrnrhlw2#

如果你能把这些属性放到一个表中,

attr
-----
Attr1

Attr2

Attr3

...

字符串
那么你可以自动生成重复的合并语句,

SELECT 'coalesce("' || attr || '", 0) "'|| attr ||'",' from table;


来保存一些输入。

相关问题