郡ごとに3を超えるスコアの数が必要なSQLクエリを作成しようとしています。次に、そのリストの郡について、スコアが3未満の部屋のパーセンテージを生成する必要があります。したがって、3つの列、郡名、#郡別スコア>3、郡別スコア<3の部屋の割合
SELECT County = c.Description, [Score > 3] = count(s.Score),
((select count(room.Name) where s.Score< 3) /( select count(room.Name) ) * 100)
FROM Sites AS s
inner join Profiles as p on s.Profile_Id = p.Id
inner join Counties as c on p.County_Id = c.Id
inner join Rooms as room on s.Id = room.Site_Id
where s.Score > 3
Group By c.Description