根据表查询学生所有课程的成绩大于80的,
使用分组时,需要注意score字段的时候需要使用聚合函数来配合分组,如果直接写score》=80会出现:
Unknown column ‘score’ in ‘having clause’
#查询所以课程中成绩大于80的学生姓名
#select name from studentscore group by name having min(score)>=80
根据表查询学生所有课程的成绩大于80的,
使用分组时,需要注意score字段的时候需要使用聚合函数来配合分组,如果直接写score》=80会出现:
Unknown column ‘score’ in ‘having clause’
#查询所以课程中成绩大于80的学生姓名
#select name from studentscore group by name having min(score)>=80