Skip to main content

Table

users

Each row represents a learner or admin profile with contact information, references, balance, role, and activity timestamps.

statusgroupRedshift
All tables

users

Each row represents a learner or admin profile with contact information, references, balance, role, and activity timestamps.

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
companyidvarchar(36)
idvarchar(36)
firstnamevarchar(255)
lastnamevarchar(255)
externalcustomeridvarchar(255)
emailvarchar(255)
address1varchar(255)
address2varchar(255)
cityvarchar(255)
statevarchar(255)
zipcodevarchar(16)
shippingnamevarchar(255)
clientidvarchar(36)
ref1varchar(255)
ref2varchar(255)
ref3varchar(255)
stripecustomeridvarchar(36)
createdattimestamp
lastactiveattimestamp
ref4varchar(255)
ref5varchar(255)
ref6varchar(255)
ref7varchar(255)
ref8varchar(255)
ref9varchar(255)
ref10varchar(255)
disabledbool
countryvarchar(255)
updatedattimestamp
balancefloat8
sfcontactidvarchar(18)
sfaccountidvarchar(18)
telephonevarchar(65535)
rolevarchar(65535)
statusgroupvarchar(256)
statusgroupupdatedattimestamp

Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.

Platform Documentation

Sample query

select
  t.firstname,
  t.lastname,
  t.externalcustomerid,
  t.email,
  t.address1
from users as t
limit 100