mysql query to get the name of a product with the lowest price
When I execute the following query, the name of any product appears, but not the product with the lowest price: SELECT MIN(Price), ProductName FROM Products; How could I see the name of the product with the lowest price? Thanks in…