How should I do this...
First I wanted to count the students who enrolled but I wanted also to count on the same query how many are new enrollees. I cannot add the New or Old condition at the bottom because I dont want my result to be resticted. So I added a select in between and put the condition just to count how many are New enrollees. I hope I explain this clearly.
First I wanted to count the students who enrolled but I wanted also to count on the same query how many are new enrollees. I cannot add the New or Old condition at the bottom because I dont want my result to be resticted. So I added a select in between and put the condition just to count how many are New enrollees. I hope I explain this clearly.
Code:
SELECT [Sch ID],
count ([Student ID]),
[Enrolled Date],
count ([Student ID]),
count (select [New or Old] from rawdata where [new or old]='old')) as NEW
FROM tblData
GROUP BY
[Sch ID],
count ([Student ID]),
[Enrolled Date],
count ([Student ID]),
NEW
Comment