R
Renaud_D
Hello,
I have a table consisting of student names linked to another one with the
date and status of passed tests (one to many relation).
It does happen that a student passes after the 1st test or needs sometimes
to take it several times before succeeding.
We have something looking like:
Student 1 - date 1st test - result 1st test (failed)
Student 1 - date 2nd test - result 2nd test (passed)
Student 2 - date 1st test - result 1sr test (failed)
Student 2 - date 2nd test - result 2nd test (failed)
Student 2 - date 3rd test - result 3rd test (failed)
I'm trying to design a query that would only return the name of the students
who didn't succeed and consequently exclude the name of those who did pass,
even if after the xth attempt.
In the above example, the query should therefore return:
Student 2
only listed once, for the clarity of the report.
Any advice would be appreciated!
Regards,
Renaud, Brussels
I have a table consisting of student names linked to another one with the
date and status of passed tests (one to many relation).
It does happen that a student passes after the 1st test or needs sometimes
to take it several times before succeeding.
We have something looking like:
Student 1 - date 1st test - result 1st test (failed)
Student 1 - date 2nd test - result 2nd test (passed)
Student 2 - date 1st test - result 1sr test (failed)
Student 2 - date 2nd test - result 2nd test (failed)
Student 2 - date 3rd test - result 3rd test (failed)
I'm trying to design a query that would only return the name of the students
who didn't succeed and consequently exclude the name of those who did pass,
even if after the xth attempt.
In the above example, the query should therefore return:
Student 2
only listed once, for the clarity of the report.
Any advice would be appreciated!
Regards,
Renaud, Brussels