vote up 2 vote down star

Hi why doesn't this work in SQL Server 2005?

select HALID, count(HALID) as CH from Outages.FaultsInOutages

where CH > 3

group by HALID

I get invalid column name 'CH'

flag

17% accept rate

4 Answers

vote up 13 vote down check

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

SELECT HALID, COUNT(HALID) AS CH
FROM Outages.FaultsInOutages
GROUP BY HALID
HAVING COUNT(HALID) > 3

This will group items on HALID, then ONLY return results that have more than 3 entries for the specific HALID

link|flag
vote up 0 vote down

Worked great thanks a lot to both of you.

link|flag
vote up 0 vote down

i think having was the right way to go but still receive the error: Invalid column name 'CH'.

When running:

select HALID, count(HALID) as CH from Outages.FaultsInOutages group by HALID having CH > 3

link|flag
having is the right way. But the invalid column name is separate from your where error – Vinko Vrsalovic Oct 2 '08 at 14:00
check the answer now – Vinko Vrsalovic Oct 2 '08 at 14:01
See my post, I provide the fix for you! – Mitchel Sellers Oct 2 '08 at 14:01
vote up 3 vote down

Try

select HALID, count(HALID) from Outages.FaultsInOutages 
group by HALID having count(HALID) > 3

Your query has two errors:

  • Using where an aggregate when grouping by, solved by using having
  • Using an alias for an aggregate in the condition, not supported, solved by using the aggregate again
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.