I
inungh
I tried to have a cross tab query out join like following data:
tblstudent
Student ID
1
2
3
tblExam
Student ID, Exam Date, Exam ID
1 10/01/2009 1
I would like have follwoing result
Stduent ID, Exam1 , Exam 2, Exam Count
1 1 0 1
2 0 0 0
3 0 0 0
For some reason, the query does not show Stduent 2 and Student 3,
since there is no exam in the exam table.
Can I do this in one cross tab query?
Your help is great appreciated,
tblstudent
Student ID
1
2
3
tblExam
Student ID, Exam Date, Exam ID
1 10/01/2009 1
I would like have follwoing result
Stduent ID, Exam1 , Exam 2, Exam Count
1 1 0 1
2 0 0 0
3 0 0 0
For some reason, the query does not show Stduent 2 and Student 3,
since there is no exam in the exam table.
Can I do this in one cross tab query?
Your help is great appreciated,