Skip to main content

Table

quizattemptresponses

Each row represents a per-question outcome within a quiz attempt, including selected answers, correctness, and question text.

statusgroupRedshift
All tables

quizattemptresponses

Each row represents a per-question outcome within a quiz attempt, including selected answers, correctness, and question text.

Full schema

View all columns and table relationships (SchemaSpy)

Status group

Yes, this table includes a statusgroup column. See Status Group for details.

Column details

ColumnType
companyidvarchar(36)
idvarchar(36)
courseidvarchar(36)
useridvarchar(36)
topicidvarchar(36)
quizattemptidvarchar(36)
questionvarchar(65535)
answervarchar(65535)
correctbool
createdattimestamp
updatedattimestamp
questionidvarchar(36)
quizquestiontypevarchar(36)
mustselectallcorrectchoicesbool
licenseidvarchar(36)
orderint4
topictypevarchar(65535)
statusgroupvarchar(256)
statusgroupupdatedattimestamp

Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.

Sample query

select
  t.courseid,
  t.userid,
  t.topicid,
  t.quizattemptid,
  t.question
from quizattemptresponses as t
limit 100