How would you implement a price matrix like you see on airfare search websites using Postgres? Essentially, I would like to show the minimum prices for items by category. The items could be anything, but let's assume we're dealing with products that have various attributes, like color or size.
Our products table might look something like this:
id name price color size
1 Test 1 99 blue medium
2 Test 2 89 red small
3 Test 3 109 blue large
4 Test 4 79 blue small
On one axis we'd show the colors, and size on the other. The values in the table would show the minimum price for that color/size combo, so the cell at the intersection of blue and small would be 79.
How do you implement this, which looks a lot like a pivot table?