爲何使用 group by 不能使用where,而必須使用having?

having是分組(group by)後的篩選條件,分組後的數據組內再篩選;where則是在分組前篩選。spa 正確寫法:select student_id, avg(score) as avgscore from student_score group by student_id having avgscore>60;select 錯誤寫法:select student_id, avg(scor
相關文章
相關標籤/搜索