Skip to main content

Table

products

Each row represents a generic catalog product with name, slug, and SKU.

statusgroupRedshift
All tables

products

Each row represents a generic catalog product with name, slug, and SKU.

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)
namevarchar(255)
skuvarchar(255)
slugvarchar(255)
createdattimestamp
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.name,
  t.sku,
  t.slug
from products as t
limit 100