Table
sections
Each row represents a course outline section with title, order, and status.
statusgroupRedshift
All tables
sections
Each row represents a course outline section with title, order, and status.
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) |
courseid | varchar(36) |
slug | varchar(32) |
status | varchar(16) |
title | varchar(255) |
position | int4 |
updatedat | timestamp |
statusgroup | varchar(256) |
statusgroupupdatedat | timestamp |
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.slug,
t.title,
t.position
from sections as t
limit 100