Table
scormattempts
Each row represents a SCORM package attempt with completion status, scores, and progress for a user on a topic.
statusgroupRedshift
All tables
scormattempts
Each row represents a SCORM package attempt with completion status, scores, and progress for a user on a topic.
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
| Column | Type |
|---|---|
companyid | varchar(36) |
id | varchar(36) |
courseid | varchar(36) |
userid | varchar(36) |
topicid | varchar(36) |
topictype | varchar(32) |
completionstatus | varchar(16) |
rawscore | int4 |
minscore | int4 |
maxscore | int4 |
passed | bool |
createdat | timestamp |
updatedat | timestamp |
completionprogress | float8 |
licenseid | varchar(36) |
scaledscore | int4 |
statusgroup | varchar(256) |
statusgroupupdatedat | timestamp |
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.topictype,
t.completionstatus
from scormattempts as t
limit 100