面试会遇到的sql语句

1.test1——student 用一条SQL 语句 查询出每门课都大于80 分的学生姓名 (思路查找小于80的 排除掉 再来一个冗余就好了) select distinct name from test1——student where name not in (select name from test1——student where score < 80) 2. 计算每名学生的总成绩 (通过g
相关文章
相关标签/搜索