Table
onboardingsurveyresponses
Each row represents one question-answer pair from an onboarding survey response, with user and survey linkage.
statusgroupRedshift
All tables
onboardingsurveyresponses
Each row represents one question-answer pair from an onboarding survey response, with user and survey linkage.
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) |
userid | varchar(36) |
onboardingsurveyid | varchar(36) |
question | varchar(65535) |
answer | varchar(65535) |
createdat | timestamp |
updatedat | timestamp |
licenseid | varchar(36) |
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.userid,
t.onboardingsurveyid,
t.question,
t.answer,
t.licenseid
from onboardingsurveyresponses as t
limit 100