SQL count query - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T13:40:47Zhttp://stackoverflow.com/feeds/question/162399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/162399/sql-count-query2SQL count querytest2008-10-02T13:56:22Z2008-10-16T04:14:29Z
<p>Hi why doesn't this work in SQL Server 2005?</p>
<p>select HALID, count(HALID) as CH from Outages.FaultsInOutages</p>
<p>where CH > 3</p>
<p>group by HALID</p>
<p>I get invalid column name 'CH'</p>
http://stackoverflow.com/questions/162399/sql-count-query/162406#1624063Answer by Vinko Vrsalovic for SQL count queryVinko Vrsalovic2008-10-02T13:57:50Z2008-10-02T14:02:51Z<p>Try</p>
<pre><code>select HALID, count(HALID) from Outages.FaultsInOutages
group by HALID having count(HALID) > 3
</code></pre>
<p>Your query has two errors:</p>
<ul>
<li>Using where an aggregate when grouping by, solved by using having</li>
<li>Using an alias for an aggregate in the condition, not supported, solved by using the aggregate again</li>
</ul>
http://stackoverflow.com/questions/162399/sql-count-query/162419#1624190Answer by test for SQL count querytest2008-10-02T13:59:57Z2008-10-02T13:59:57Z<p>i think having was the right way to go but still receive the error:
Invalid column name 'CH'.</p>
<p>When running:</p>
<p>select HALID, count(HALID) as CH from Outages.FaultsInOutages
group by HALID having CH > 3</p>
http://stackoverflow.com/questions/162399/sql-count-query/162420#16242013Answer by Mitchel Sellers for SQL count queryMitchel Sellers2008-10-02T13:59:58Z2008-10-02T13:59:58Z<p>You can't use the alias in the where clause or having clause, as it isn't processed until AFTER the result set is generated, the proper syntax is</p>
<pre><code>SELECT HALID, COUNT(HALID) AS CH
FROM Outages.FaultsInOutages
GROUP BY HALID
HAVING COUNT(HALID) > 3
</code></pre>
<p>This will group items on HALID, then ONLY return results that have more than 3 entries for the specific HALID</p>
http://stackoverflow.com/questions/162399/sql-count-query/162440#1624400Answer by test for SQL count querytest2008-10-02T14:03:50Z2008-10-02T14:03:50Z<p>Worked great thanks a lot to both of you.</p>