A family of Microsoft relational database management systems designed for ease of use.
Your strucutre is off. A survey database has a very specific structure.
You should NOT have a field for each question, but a record for each:
tblQuestion
QuestionID (PK)
Question
tblRespondent (this is similar to your User table)
RespondentID (PK)
FirstName
Lastname
TeamID
etc.
tblResponse
ResponseID (PK)
RespondentID (FK)
ResponseDate
TestID (FK)
tblAnswer
AnswerID (PK)
ResponseID (FK)
QuestionID (FK)
Answer
So each record in tblAnswer represent an answer to a specific question and identifies the Response which tells you who took the quiz, which quiz and when