I have a table like as follows:
SoftwareName Count Country Project 15 Canada Visio 12 Canada Project 10 USA Visio 5 USA
How do I query it to give me a summary like...
SoftwareName Canada USA Total Project 15 10 25 Visio 12 5 17
How to do in T-SQL?
|
I have a table like as follows: SoftwareName Count Country Project 15 Canada Visio 12 Canada Project 10 USA Visio 5 USA How do I query it to give me a summary like... SoftwareName Canada USA Total Project 15 10 25 Visio 12 5 17 How to do in T-SQL? | ||||
|
feedback
|
| |||||
|
feedback
|
|
OK...Here's how to do it using PIVOT:
| |||||
feedback
|
|
This is called table pivoting. In your simple case, there are just two columns; in general, there could be 200 countries or so, in which case, the pivoting becomes rather hard. There are many resources online describing how to do it: Google for 'pivot table sql'. | |||
|
feedback
|
|
in SQL 2005 or later there-SQL keyword "Pivot" that does this for you, Check out the following link: | |||
|
feedback
|