Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

mysql group by para retornar o valor mínimo e obter os dados de linha correspondentes

SELECT Merchant.Product, Merchant.Name, Merchant.Price
FROM a_table AS Merchant
JOIN
(
SELECT Product, MIN(Price) AS MinPrice
FROM a_table
GROUP BY Product
) AS Price
ON Merchant.Product = Price.Product
AND Merchant.Price = Price.MinPrice

Retornará duas linhas se dois comerciantes tiverem o mesmo preço baixo e baixo.