A typical database table might look something like this:
date-------geography---clicks---cost---conversions
___________________________________________________
1/1/2010---Kansas------56-------12-----1
When transposed, it looks like this.
date-----geography---metric_name---metric_value
____________________________________________
1/1/2010-Kansas------clicks--------56
1/1/2010-Kansas------cost----------12
1/1/2010-Kansas------conversions---1
The transposed table works better for some use cases where the number of metrics being collected changes frequently.
Is there a standard name for a table structured like that in the transposed table?