Summary query from several fields in SQL - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T21:03:28Zhttp://stackoverflow.com/feeds/question/353948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/353948/summary-query-from-several-fields-in-sql1Summary query from several fields in SQL Rihohttp://stackoverflow.com/users/447152008-12-09T19:32:47Z2008-12-09T20:22:42Z
<p>Data table structure is:<br>
id1,id2,id3,id4,... (some other fields).<br>
I want to create summary query to find out how many times some ID value is used in every column.</p>
<p>Data<br>
1,2,3,4,2008<br>
2,3,5,1,2008<br>
1,3,2,5,2007<br>
1,2,3,6,2007<br>
3,1,2,5,2007<br></p>
<p>For value 1, the result should be<br>
1,0,0,1,2008<br>
2,1,0,0,2007<br></p>
<p>How to accomplish this with one query (in MySQL).</p>
http://stackoverflow.com/questions/353948/summary-query-from-several-fields-in-sql/353971#3539711Answer by Cade Roux for Summary query from several fields in SQL Cade Rouxhttp://stackoverflow.com/users/182552008-12-09T19:43:30Z2008-12-09T19:43:30Z<p>Use a characteristic or delta function:</p>
<pre><code>DECLARE @look_for AS int
SET @look_for = 1
SELECT SUM(CASE WHEN id1 = @look_for THEN 1 ELSE 0 END) AS id1_count
,SUM(CASE WHEN id2 = @look_for THEN 1 ELSE 0 END) AS id2_count
,SUM(CASE WHEN id3 = @look_for THEN 1 ELSE 0 END) AS id3_count
,SUM(CASE WHEN id4 = @look_for THEN 1 ELSE 0 END) AS id4_count
FROM tbl
</code></pre>
<p>There are ways to code generate this (also a technique using PIVOT and UNPIVOT in SQL Server which is not ANSI) based on your table and the distinct ID values also.</p>
http://stackoverflow.com/questions/353948/summary-query-from-several-fields-in-sql/353972#353972-1Answer by Dan Sydner for Summary query from several fields in SQL Dan Sydnerhttp://stackoverflow.com/users/439882008-12-09T19:43:31Z2008-12-09T19:43:31Z<p>if X is the id value you're looking for, you'd do it something like this.</p>
<pre><code>select (select count(*) where id1 = X) as countid1 ... etc
</code></pre>
http://stackoverflow.com/questions/353948/summary-query-from-several-fields-in-sql/353986#3539860Answer by mson for Summary query from several fields in SQL msonhttp://stackoverflow.com/users/369022008-12-09T19:47:47Z2008-12-09T19:47:47Z<p>select</p>
<p>(select count(id1) from t1 where id1 = @param) as id1,</p>
<p>(select count(id2) from t2 where id2 = @param) as id2</p>
http://stackoverflow.com/questions/353948/summary-query-from-several-fields-in-sql/354103#3541031Answer by Riho for Summary query from several fields in SQL Rihohttp://stackoverflow.com/users/447152008-12-09T20:22:42Z2008-12-09T20:22:42Z<p>This seems like the best solution (from <a href="http://en.wikibooks.org/wiki/Programming:MySQL/Pivot_table" rel="nofollow">Wiki</a>):</p>
<pre><code>select years,
sum(1*(1-abs(sign(id1-56)))) as id1,
sum(1*(1-abs(sign(id2-56)))) as id2,
sum(1*(1-abs(sign(id3-56)))) as id3,
sum(1*(1-abs(sign(id4-56)))) as id4,
from mytable
group by years
</code></pre>