F
feh
Hi,
I've a table organized by states, years, subjects,
grades, levels and an associated student count.
I want to find the percentage of students in each
year, subject, grade and level.
This is what I'm working with, but don't really
know what to do next.
SELECT EXTR046_ST.[State Name],
EXTR046_ST.[Reporting Period],
EXTR046_ST.Subject,
EXTR046_ST.[Grade Level],
EXTR046_ST.[Performance Level],
EXTR046_ST.[Student count],
Sum (EXTR046_ST.[Student count]) AS [SumStudents]
* I KNOW MORE STUFF BELONGS HERE BUT NOT SURE *
FROM EXTR046_ST where EXTR046_ST.[state name] = "STATE"
GROUP BY EXTR046_ST.[State Name],
EXTR046_ST.[Reporting Period],
EXTR046_ST.Subject,
EXTR046_ST.[Grade Level],
EXTR046_ST.[Performance Level];
Thanks in advance,
Charles
I've a table organized by states, years, subjects,
grades, levels and an associated student count.
I want to find the percentage of students in each
year, subject, grade and level.
This is what I'm working with, but don't really
know what to do next.
SELECT EXTR046_ST.[State Name],
EXTR046_ST.[Reporting Period],
EXTR046_ST.Subject,
EXTR046_ST.[Grade Level],
EXTR046_ST.[Performance Level],
EXTR046_ST.[Student count],
Sum (EXTR046_ST.[Student count]) AS [SumStudents]
* I KNOW MORE STUFF BELONGS HERE BUT NOT SURE *
FROM EXTR046_ST where EXTR046_ST.[state name] = "STATE"
GROUP BY EXTR046_ST.[State Name],
EXTR046_ST.[Reporting Period],
EXTR046_ST.Subject,
EXTR046_ST.[Grade Level],
EXTR046_ST.[Performance Level];
Thanks in advance,
Charles