Im very new to mysql, and any help would be much appreciated!
I have my main table with product information. (9000+ products)
id name size color
9809355 product one small blue
0109425 product two large black
I also have cron script that that gets the following data of each product every hour (from ebay or amazon):
id price timestamp
9809355 $672.00 07/26/2012 @ 2:00pm
0109425 $82.00 07/26/2012 @ 2:00pm
(prices are allways changing)
What is the best way to store this data?
my options seem to be creating a table for each product, or placing all my data into one table for product prices.