Skip to main content

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

ColumnType
idvarchar(36)
companyidvarchar(36)
answeredcountint4
competencyassessmentidvarchar(36)
useridvarchar(36)
gradefloat8
correctanswercountint4
incorrectanswercountint4
passedbool
resourceidvarchar(36)
resourcetypevarchar(256)
createdattimestamp
updatedattimestamp
timeelapsedinsecondsint4
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.answeredcount,
  t.competencyassessmentid,
  t.userid,
  t.grade,
  t.correctanswercount
from competencyassessmentattempts as t
limit 100