I have set up a price comparison tool that crawls websites and then detects price changes. I have a table that contains the price, the items id and the scan id. I have another table which contains the item info and another table which contains a list of scans and when they took place.

I am trying to make a query that can detect new products and price changes. This is what I have... but it causes an error 'Invalid use of group function'

SELECT * FROM 
(SELECT * FROM price WHERE scan_id = MAX(scan_id) - 1) as P 

LEFT JOIN 

(SELECT * FROM price WHERE scan_id = MAX(scan_id)) as N 

ON 
P.item_id = N.item_id 
AND P.price != N.price 

JOIN item I ON N.item_id = I.item_id

For some reason this query is not working.

link|improve this question

maybe it is not the solution but try to wrap first join with brackets – Dalen Jun 7 '11 at 15:58
I am not grouping by scan id... I am comparing two scans with the same item_id. So if anything I want to group by item_id.... but you can't compare the contents of a group can you? – Mark Jun 7 '11 at 16:06
feedback

1 Answer

up vote 0 down vote accepted

The problem was with the MAX() part of the sub query. I removed it and replaced it with the numbers and it worked a treat.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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