Summarize aggregated data - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T09:53:15Zhttp://stackoverflow.com/feeds/question/248990http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/248990/summarize-aggregated-data3Summarize aggregated datasammydc2008-10-30T01:21:48Z2008-10-30T04:25:30Z
<p>I have a table like as follows:</p>
<pre>
SoftwareName Count Country
Project 15 Canada
Visio 12 Canada
Project 10 USA
Visio 5 USA
</pre>
<p>How do I query it to give me a summary like...</p>
<pre>
SoftwareName Canada USA Total
Project 15 10 25
Visio 12 5 17
</pre>
<p>How to do in T-SQL?</p>
http://stackoverflow.com/questions/248990/summarize-aggregated-data/249020#2490203Answer by Bill Karwin for Summarize aggregated dataBill Karwin2008-10-30T01:38:44Z2008-10-30T01:38:44Z<pre><code>SELECT SoftwareName,
SUM( CASE Country WHEN 'Canada' THEN [Count] ELSE 0 END ) AS Canada,
SUM( CASE Country WHEN 'USA' THEN [Count] ELSE 0 END ) AS USA,
SUM( [Count] ) AS Total
FROM [Table]
GROUP BY SoftwareName;
</code></pre>
http://stackoverflow.com/questions/248990/summarize-aggregated-data/249028#2490281Answer by Jonathan Leffler for Summarize aggregated dataJonathan Leffler2008-10-30T01:40:08Z2008-10-30T01:40:08Z<p>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.</p>
<p>There are many resources online describing how to do it: Google for 'pivot table sql'.</p>
http://stackoverflow.com/questions/248990/summarize-aggregated-data/249144#2491441Answer by Charles Bretana for Summarize aggregated dataCharles Bretana2008-10-30T02:46:42Z2008-10-30T02:46:42Z<p>in SQL 2005 or later there-SQL keyword "Pivot" that does this for you,
Check out the following link:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms177410.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms177410.aspx</a> </p>
http://stackoverflow.com/questions/248990/summarize-aggregated-data/249272#2492722Answer by MarlonRibunal for Summarize aggregated dataMarlonRibunal2008-10-30T04:25:30Z2008-10-30T04:25:30Z<p>OK...Here's how to do it using PIVOT:</p>
<pre><code>SELECT Softwarename, Canada, USA, Canada + USA As TOTAL from SoftwareDemo
PIVOT
(
SUM([Count])
FOR Country
IN (Canada, USA)
) AS x
Softwarename Canada USA TOTAL
-------------------------------------------------- ----------- ----------- -----------
Project 15 10 25
Visio 12 5 17
(2 row(s) affected)
</code></pre>