Hi folks,
I can't get my head straight on the best way to attack this situation.
I have a denormalised table which looks like this:
The problem is I can't plot a dynamic graph on this set up, so I need to create a view whcih normalises this dataset up thusly:
Any thoughts on the best way to approach this?
Thanks for your time.
I can't get my head straight on the best way to attack this situation.
I have a denormalised table which looks like this:
Code:
Country Product Week1 Week2 Week3
-------------------------------------
SPAIN CPU 190 200 280
ITALY CPU 800 877 788
Code:
Country Product Week Units
-----------------------------
SPAIN CPU 1 190
SPAIN CPU 2 200
SPAIN CPU 3 280
ITALY CPU 1 800
ITALY CPU 2 877
ITALY CPU 3 788
Thanks for your time.