Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table of products, there can be multiple products with the same name but with different prices, i want to display only the cheapest price of each product.

Example Of Table:

TABLE: Products(name,price)
---------------------------
Banana -- 1,25
Banana -- 1,10
Strawberry -- 2,43
Apple -- 1,11
Apple -- 4,12
Apple -- // Some Products Can Have the Price Column Empty!!

I want a MySQL query to get this:

  • Banana From: $1,10
  • Strawberry From: $2,43
  • Apple From: $1,11

Thanks!

share|improve this question

3 Answers

up vote 4 down vote accepted

Off the top of my head, something like

select name, min(price) from products group by name;

See this link for more info. http://www.techonthenet.com/sql/group_by.php

Then use PHP to display the data however you wish e.g. in a table etc.

Also, you haven't said whether the price field can be NULL or not. You also haven't said whether your name field could have mixed case like "bananas" or "Bananas" or similar. If so then you'll probably want to call UPPER(TRIM(name)) or something like that on the name field to normalize it.

share|improve this answer
Is this ignoring the products that have no value in the price column? – Ryan Nov 16 '10 at 21:43

Use:

  SELECT p.name,
         MIN(REPLACE(p.price, ',', '')) AS minprice
    FROM PRODUCTS p
GROUP BY p.name

Storing prices as a string can cause unnecessary grief when trying to get the lowest numeric value, so I used the REPLACE function to strip the character out. But this assumes that all values have cents associated.

The aggregate function MIN (and MAX) will return NULL if the lowest value is NULL. If you want these to show up as zero instead:

  SELECT p.name,
         COALESCE(MIN(REPLACE(p.price, ',', '')), 0) AS minprice
    FROM PRODUCTS p
GROUP BY p.name

This is why you should not store formatting -- apply it in the presentation layer, so you can accommodate other formats.

share|improve this answer
I Think Prices Like 0,67 will be treated as 67? – Ryan Nov 16 '10 at 21:50
@David: As long as every value has cents associated, that's fine. IE; 1,00 would be 100... – OMG Ponies Nov 16 '10 at 21:51
Does min work on text fields? – Matt Nov 16 '10 at 22:01
@Matt H: Yes, MIN/MAX accept strings. – OMG Ponies Nov 16 '10 at 22:07

select distinct name, price from products where price <> NULL order by price desc

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.