Skip to main content

Table

lessons

Each row represents a lesson within a course section, including title, slug, and hierarchy keys.

statusgroupRedshift
All tables

lessons

Each row represents a lesson within a course section, including title, slug, and hierarchy keys.

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)
sectionidvarchar(36)
courseidvarchar(36)
slugvarchar(32)
titlevarchar(255)
updatedattimestamp
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.sectionid,
  t.courseid,
  t.slug,
  t.title
from lessons as t
limit 100