Jump to content

[SOLVED] Select row that has a unique value and max timestamp.


daydreamer

Recommended Posts

Hi, I have a table like this:

 

---Prices---

Price    Product ID    Supplier ID    Timestamp

44      1                2               

45      1                2

40      1                3

 

 

I am trying to select the latest price for each supplier for a given product ID.

 

This is what I have:

$result = mysql_query("SELECT * FROM prices WHERE product_id='$id' ORDER BY price desc")or die(mysql_error());

 

I have tried a few things like group by, and distinct but cannot get the exact data set I need.

 

How would I do this?

Link to comment
Share on other sites

Hi

 

To bring them all back, do a SELECT to bring back the latest timestamp for each produce, grouped by product id and supplier id, then JOIN that to the original table on the product id, supplier id and timestamp to get the rest of the fields (such as the actual price).

 

Something like this:-

 

SELECT a.Price, a.product_id, a.supplier_id, b.MaxTimeStamp
FROM Prices a
JOIN (SELECT product_id, supplier_id, Max(Timestamp) AS MaxTimeStamp
FROM Prices
GROUP BY product_id, supplier_id) b
ON a.product_id . b.product_id
AND a.supplier_id = b.supplier_id
AND a.Timestamp = b.MaxTimeStamp

 

You can then narrow this down to a particular product id with a WHERE clause (either at the end, or within the subselect).

 

All the best

 

Keith

Link to comment
Share on other sites

Thanks for the link PFMaBiSmAd, did look at that page wasnt sure if I was able to use that method.

 

SELECT a.Price, a.product_id, a.supplier_id, b.MaxTimeStamp
FROM Prices a
JOIN (SELECT product_id, supplier_id, Max(Timestamp) AS MaxTimeStamp
FROM Prices
GROUP BY product_id, supplier_id) b
ON a.product_id . b.product_id
AND a.supplier_id = b.supplier_id
AND a.Timestamp = b.MaxTimeStamp

 

Thanks alot this worked a treat

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.