Skip to main content

Table

questionchoices

Each row represents an answer option for a quiz question, including correctness, points, and order.

statusgroupRedshift
All tables

questionchoices

Each row represents an answer option for a quiz question, including correctness, points, and order.

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)
questionidvarchar(36)
correctbool
pointsint4
orderint4
deletedbool
valuevarchar(65535)
responsevarchar(65535)
updatedattimestamp
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.questionid,
  t.correct,
  t.points,
  t.order,
  t.value
from questionchoices as t
limit 100