例如数据库中有A表,包括学生,学科,成绩三个字段,数据库结构为: 如何统计每个学科的最高分()
A、select学生,max(成绩)fromAgroupby学生;
B、select学生,max(成绩)fromAgroupby学科;
C、select学生,max(成绩)fromAorderby学生;
D、select学生,max(成绩)fromAgroupby成绩;
发布时间:2024-05-25 09:19:35
A、select学生,max(成绩)fromAgroupby学生;
B、select学生,max(成绩)fromAgroupby学科;
C、select学生,max(成绩)fromAorderby学生;
D、select学生,max(成绩)fromAgroupby成绩;