Skip to main content

Table

userlearningpaths

Each row represents a user's assignment to a learning path with status, due dates, and related program identifiers.

statusgroupRedshift
All tables

userlearningpaths

Each row represents a user's assignment to a learning path with status, due dates, and related program identifiers.

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)
useridvarchar(36)
learningpathidvarchar(36)
programidvarchar(36)
bundleidvarchar(36)
statusvarchar(65535)
updatedattimestamp
duedatetimestamp
statusgroupvarchar(256)
statusgroupupdatedattimestamp

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

Sample query

select
  t.userid,
  t.learningpathid,
  t.programid,
  t.bundleid,
  t.duedate
from userlearningpaths as t
limit 100