Skip to main content

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

ColumnType
idvarchar(36)
companyidvarchar(36)
titlevarchar(65535)
courseidvarchar(36)
attendeeinfovarchar(65535)
instructorsvarchar(65535)
locationidvarchar(36)
startdatetimestamp
enddatetimestamp
updatedattimestamp
deletedbool
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.title,
  t.courseid,
  t.attendeeinfo,
  t.instructors,
  t.locationid
from meetings as t
limit 100