Table
sectioncompletions
Each row records when a user completed a course section.
Redshift
All tables
sectioncompletions
Each row records when a user completed a course section.
Full schema
View all columns and table relationships (SchemaSpy)Status group
No, this table does not include a statusgroup column.
Column details
| Column | Type |
|---|---|
id | varchar(36) |
companyid | varchar(36) |
courseid | varchar(36) |
sectionid | varchar(36) |
userid | varchar(36) |
createdat | timestamp |
updatedat | timestamp |
licenseid | varchar(36) |
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.sectionid,
t.userid,
t.licenseid
from sectioncompletions as t
limit 100