Sql,按组获取所有可能的最小值

时间:2014-11-25 22:26:25

标签: mysql sql

这是表格的样子:

------------------------------------------------------------------------
    ProductId      ProductType      SupplierId       Price       Date
    10001          Toy1             3                20          2011-10-20
    10001          Toy1             5                23          2011-11-29
    10002          Book1            3                20          2010-12-29
    10004          Book2            4                12          2013-2-11
    10004          Book2            3                25          2014-1-1
    10004          Book2            5                23          2012-9-18

我需要一个查询来获取每个供应商的最低价格产品,因此在上表中运行查询后的结果将是:

----------------------------------
   SupplierId      ProductType
   3               Toy1
   3               Book1
   4               Book2
   5               Toy1
   5               Book2

感谢。

2 个答案:

答案 0 :(得分:2)

您可以使用where子句中的子查询或聚合和连接来执行此操作:

select t.*
from table t
where t.price = (select min(price)
                 from table t2
                 where t2.supplierid = t.supplierid
                );

编辑:

具有聚合的版本是:

select t.*
from table t join
     (select supplierId, min(price) as minprice
      from table t
      group by supplierId
     ) ts
     on ts.supplierId = t.supplierId and ts.minprice = t.price;

在某些情况下,这可能比以前的版本表现更好。如果性能在较大的表上是一个问题,那么在您的环境中测试两者以及正确的索引是很重要的。

答案 1 :(得分:0)

SELECT a.SupplierID, a.ProductType
FROM table a
WHERE NOT EXISTS (SELECT * FROM table b WHERE b.SupplierID = a.SupplierID and b.Price < a.Price)