Skip to main content

Table

quizattempts

Each row represents a single quiz sitting by a learner, including score, pass/fail, duration, and topic linkage.

statusgroupRedshift
All tables

quizattempts

Each row represents a single quiz sitting by a learner, including score, pass/fail, duration, and topic linkage.

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)
topictypevarchar(16)
statusvarchar(16)
gradeint4
passedbool
timeelapsedint4
createdattimestamp
migratedint4
updatedattimestamp
licenseidvarchar(36)
forgivenbool
statusgroupvarchar(256)
statusgroupupdatedattimestamp

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

Platform Documentation

Sample query

select
  t.courseid,
  t.userid,
  t.topicid,
  t.topictype,
  t.grade
from quizattempts as t
limit 100