sql面試題

--1.查詢平均成績大於60分的同學的學號和平均成績 --select StuId,avg(Score) from student group by StuID having avg (Score) > 60; --2.查詢姓「李」的學生的個數(一個學生可能會有多條學科成績) --select count(distinct StuID) from student where StuID in (s
相關文章
相關標籤/搜索