現在の状態から、FILTER
を使用してピボットを実行できます。 条項:
SELECT
response,
document,
MAX(bill) FILTER (WHERE label = 'bill') as bill,
MAX(answer) FILTER (WHERE label = 'amount') as amount,
MAX(product) FILTER (WHERE label = 'product') as product,
MAX(answer) FILTER (WHERE label = 'price') as price
FROM t
GROUP BY response, document
元のテーブルがどのように見えるかはよくわかりません。このような場合:
response | document | label | value
-------: | -------: | :------ | :----
71788176 | 79907201 | bill | 26899
71788176 | 79907201 | amount | 1
71788176 | 79907201 | product | shoes
71788176 | 79907201 | price | 25.99
次に、次のようにクエリを変更できます。
SELECT
response,
document,
MAX(value) FILTER (WHERE label = 'bill') as bill,
MAX(value) FILTER (WHERE label = 'amount') as amount,
MAX(value) FILTER (WHERE label = 'product') as product,
MAX(value) FILTER (WHERE label = 'price') as price
FROM t
GROUP BY response, document
編集 :JSON値を製品列に追加するには:
バリエーション1:タイプjson
を単純にキャストできます タイプtext
:
MAX(product::text) FILTER (WHERE label = 'product') as product,
バリエーション2:"name"
から値を読み取ります 属性:
MAX(product ->> 'name') FILTER (WHERE label = 'product') as product,