这是问题所在。
select count(studentID) AS count from educators where count > 1 group by studentid
将不起作用,因为 SQL Server 还不知道 count 列。
所以我必须这样做
select *
from (select count(StudentID) as count
from educators
group by studentid
) s
where s.count > 1
有没有更优雅的解决方案?似乎应该有更好的方法来做到这一点。