Product_id属性と100以上の属性を持つproductテーブルがあります。 product_idはテキストですが、属性列は整数です。つまり、属性が存在する場合は1です。 Postgresqlクロス集計が実行されると、一致しない属性は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)...を実行することです。しかし、100以上の列のそれぞれに合体を入力するのはかなり手に負えません。クロス集計を使用してこれを処理する方法はありますか?ありがとう
合体を使用できます:
select account_number,
coalesce(Attr1, 0) as Attr1,
coalesce(Attr2, 0) as Attr2,
etc
あなたがそれらの属性を次のようなテーブルに置くことができるなら
Attr1
Attr2
Attr3
.。
次に、次のような繰り返しの合体ステートメントを自動的に生成できます。
SELECT 'coalesce("' || attr || '", 0) "'|| attr ||'",' from table;
入力を節約します。