Summarize aggregated data - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T04:59:04Z http://stackoverflow.com/feeds/question/248990 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/248990/summarize-aggregated-data 3 Summarize aggregated data sammydc 2008-10-30T01:21:48Z 2008-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#249020 3 Answer by Bill Karwin for Summarize aggregated data Bill Karwin 2008-10-30T01:38:44Z 2008-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#249028 1 Answer by Jonathan Leffler for Summarize aggregated data Jonathan Leffler 2008-10-30T01:40:08Z 2008-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#249144 1 Answer by Charles Bretana for Summarize aggregated data Charles Bretana 2008-10-30T02:46:42Z 2008-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#249272 2 Answer by MarlonRibunal for Summarize aggregated data MarlonRibunal 2008-10-30T04:25:30Z 2008-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>