sure, lets say I have test1. User takes test1 and Fails. An F is placed in the score field. Users takes the test again, and again fails, so now another row is inserted into the table with F in the score field. On their third attempt, user passes test, and a third row is inserted into table, P in the score field. So now for this one test, I have three scores, two fails and a 1 pass. Has to be this way so it can tracked how many times user took test. So now, I need to report who has passed and who has failed. Sounds easy enough, but I need to get those users who have taken the test and failed, but then passed off of this report....so basically:
Select * from results where score = 'F' [what I need here though is something that says F if there is no P for the user/test combination....