I have a database that has the testing scores of users but some users did the test more then once when they were only suppose to do it only once, for every test there is 40 records generated with a time stamp. I want to pull off the first 40 records for each user so i can get their first test results.
here is the reg select statement from the table:
date1 is the date the test was submitted
How would i go about doing this?
here is the reg select statement from the table:
Code:
SELECT [entrance exam].ID, [entrance exam].[last name], [entrance exam].[first name], [entrance exam].date1, [entrance exam].[question name], [entrance exam].answers, [entrance exam].correct_r, [entrance exam].Field8, [entrance exam].Field12
FROM [entrance exam];
date1 is the date the test was submitted
How would i go about doing this?