Summary of the "lyrSurveyResponseAnswer" columns in ListManager
This table stores the reponses to a specific question in a survey. Every survey response will have one row in the lyrSurveyResponse table, and potentially multiple rows in this table, one for each question in the survey.
Primary key: ResponseID, QuestionID, AnswerID
ResponseID |
The identifier of the response from the lyrSurveyResponse table. (int, NOT NULL) |
AnswerID |
The identifier of the answer from the lyrSurveyAnswers table. (int, NOT NULL) |
QuestionID |
The identifier of the question from the lyrSurveyQuestions table. (int, NOT NULL) |
FreeFormAnswer |
Any free form response to a question. (text, NULL) |