Table
competencyassessmentattempts
Each row represents one attempt by a user on a competency assessment, including scores, pass/fail, and timing.
statusgroupRedshift
All tables
competencyassessmentattempts
Each row represents one attempt by a user on a competency assessment, including scores, pass/fail, and timing.
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 |
|---|---|
id | varchar(36) |
companyid | varchar(36) |
answeredcount | int4 |
competencyassessmentid | varchar(36) |
userid | varchar(36) |
grade | float8 |
correctanswercount | int4 |
incorrectanswercount | int4 |
passed | bool |
resourceid | varchar(36) |
resourcetype | varchar(256) |
createdat | timestamp |
updatedat | timestamp |
timeelapsedinseconds | 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.
Platform Documentation
Sample query
select
t.answeredcount,
t.competencyassessmentid,
t.userid,
t.grade,
t.correctanswercount
from competencyassessmentattempts as t
limit 100