HI,
I have the following tables :
School - SchoolID(int), SchoolName(nvarchar)
Class - ClassID(int), ClassName(varchar), SchoolID
Section - SectionID(int), SectionName(nvarchar),ClassID
Student - StudentID(int), SectionID, Age(smallint), Sex(nchar(1)), DateOfJoining(datetime)
I want to create a drill down report that shows School/Class/Section wise student enrollments.
Please guide.
Thanks.