SQL count query - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T13:40:47Z http://stackoverflow.com/feeds/question/162399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/162399/sql-count-query 2 SQL count query test 2008-10-02T13:56:22Z 2008-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#162406 3 Answer by Vinko Vrsalovic for SQL count query Vinko Vrsalovic 2008-10-02T13:57:50Z 2008-10-02T14:02:51Z <p>Try</p> <pre><code>select HALID, count(HALID) from Outages.FaultsInOutages group by HALID having count(HALID) &gt; 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#162419 0 Answer by test for SQL count query test 2008-10-02T13:59:57Z 2008-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#162420 13 Answer by Mitchel Sellers for SQL count query Mitchel Sellers 2008-10-02T13:59:58Z 2008-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) &gt; 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#162440 0 Answer by test for SQL count query test 2008-10-02T14:03:50Z 2008-10-02T14:03:50Z <p>Worked great thanks a lot to both of you.</p>