Z obecnego stanu możesz po prostu wykonać oś obrotu za pomocą FILTER
klauzula:
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
Nie jestem do końca pewien, jak wygląda Twój oryginalny stół. Jeśli jest bardziej tak:
response | document | label | value
-------: | -------: | :------ | :----
71788176 | 79907201 | bill | 26899
71788176 | 79907201 | amount | 1
71788176 | 79907201 | product | shoes
71788176 | 79907201 | price | 25.99
Następnie możesz zmodyfikować zapytanie w ten sposób:
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
Edytuj :TO dodał wartość JSON do kolumny produktu:
Wariant 1:Możesz po prostu rzutować typ json
wpisz text
:
MAX(product::text) FILTER (WHERE label = 'product') as product,
Wariant 2:Czytasz wartość z "name"
atrybut:
MAX(product ->> 'name') FILTER (WHERE label = 'product') as product,