group by HS_ID, HS_Stu_ID
ASKER
strSQL = "SELECT SUM(HS_Score), HS_Stu_ID " &_
"FROM tbl_HomwWork_Scores WHERE HS_Week_ID <= 13 AND HS_Class_ID = " & NumClassID & " GROUP BY HS_Stu_ID Order By HS_Score DESC;"
ASKER
ASKER
strSQL = "SELECT SUM(HS_Score) as total_score, HS_Stu_ID " &_
"FROM tbl_HomwWork_Scores WHERE HS_Week_ID <= 13 AND HS_Class_ID = " & NumClassID & " GROUP BY HS_Stu_ID Order By total_score DESC;"
ASKER
ASKER
Active Server Pages (ASP) is Microsoft’s first server-side engine for dynamic web pages. ASP’s support of the Component Object Model (COM) enables it to access and use compiled libraries such as DLLs. It has been superseded by ASP.NET, but will be supported by Internet Information Services (IIS) through at least 2022.
TRUSTED BY
I assume you would want to be grouping by HS_Stu_ID