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
