show/hide this revision's text 2 added 17 characters in body

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
show/hide this revision's text 1

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, not supported, solved by using the aggregate again