Skip to main content

Table

ltiattempts

Each row represents an external-tool assessment attempt linked to a course topic, with score and timing.

Redshift
All tables

ltiattempts

Each row represents an external-tool assessment attempt linked to a course topic, with score and timing.

Full schema

View all columns and table relationships (SchemaSpy)

Status group

No, this table does not include a statusgroup column.

Column details

ColumnType
companyidvarchar(36)
idvarchar(36)
courseidvarchar(36)
useridvarchar(36)
topicidvarchar(36)
topictypevarchar(32)
resultscorefloat8
createdattimestamp
updatedattimestamp

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.topicid,
  t.topictype,
  t.resultscore
from ltiattempts as t
limit 100