Skip to main content

Table

waitlists

Each row represents a user waiting for access to a full course, including waitlist status and notification flags.

Redshift
All tables

waitlists

Each row represents a user waiting for access to a full course, including waitlist status and notification flags.

Full schema

View all columns and table relationships (SchemaSpy)

Status group

No, this table does not include a statusgroup column.

Column details

ColumnType
idvarchar(36)
companyidvarchar(36)
courseidvarchar(36)
useridvarchar(36)
emailsentbool
updatedattimestamp
createdattimestamp
waitliststatusvarchar(150)

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.userid,
  t.emailsent,
  t.waitliststatus
from waitlists as t
limit 100