Skip to main content

Table

locations

Each row represents a physical or virtual venue for instructor-led training, including address, timezone, and room.

Redshift
All tables

locations

Each row represents a physical or virtual venue for instructor-led training, including address, timezone, and room.

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)
address1varchar(255)
address2varchar(255)
cityvarchar(255)
countryvarchar(255)
namevarchar(255)
roomvarchar(255)
statevarchar(255)
timezonevarchar(255)
zipcodevarchar(255)
updatedattimestamp

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

Sample query

select
  t.address1,
  t.address2,
  t.city,
  t.country,
  t.name
from locations as t
limit 100