Table
meetings
Each row represents a scheduled session tied to a course, including title, time window, location, and instructor information.
statusgroupRedshift
All tables
meetings
Each row represents a scheduled session tied to a course, including title, time window, location, and instructor information.
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) |
title | varchar(65535) |
courseid | varchar(36) |
attendeeinfo | varchar(65535) |
instructors | varchar(65535) |
locationid | varchar(36) |
startdate | timestamp |
enddate | timestamp |
updatedat | timestamp |
deleted | bool |
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.title,
t.courseid,
t.attendeeinfo,
t.instructors,
t.locationid
from meetings as t
limit 100