如何通过每个产品的单行产品获得不同的价格

时间:2016-10-04 06:00:11

标签: sql postgresql distinct aggregate-functions string-aggregation

订单包含不同价格的相同产品。

如何按顺序获取每件产品的不同价格清单,每件产品一行?

我试过

SELECT product, string_AGG(DISTINCT price::text, ',' ORDER BY price)
 FROM (VALUES ('A', 100), ('A', 200) , ('B', 200))
orderdetail (product, price)
GROUP BY product

但收到错误

ERROR:  in an aggregate with DISTINCT, ORDER BY expressions must appear in argument list
LINE 1: ...ct, string_AGG(DISTINCT price::text, ',' ORDER BY price DESC...

如何解决这个问题?

使用Postgres 9.4。

这可能是创建答案所必需的 How to find changed prices in last two purchase invoices

1 个答案:

答案 0 :(得分:2)

鉴于您的错误消息,以及来自@GordonLinoff等大师的what I read here on Stack Overflow,您无法在DISTINCT内使用STRING_AGG。一个快速的解决方法是首先对您的表进行子查询,然后使用DISTINCT删除重复项。

SELECT t.product, STRING_AGG(t.price::text, ',' ORDER BY price)
FROM
(
    SELECT DISTINCT product, price
    FROM (VALUES ('A', 100), ('A', 100), ('A', 200), ('B', 200), ('B', 200))
    orderdetail (product, price)
) t
GROUP BY t.product

我在Postgres上测试了这个查询,它返回了这个:

product | string_agg
text    | text
A       | 100,200
B       | 200