Baselight

Retail Supermarket

Supermarket store data

@kaggle.roopacalistus_superstore

Samplesuperstore
@kaggle.roopacalistus_superstore.samplesuperstore

  • 175.44 KB
  • 9994 rows
  • 13 columns
ship_mode

Ship Mode

segment

Segment

country

Country

city

City

state

State

postal_code

Postal Code

region

Region

category

Category

sub_category

Sub-Category

sales

Sales

quantity

Quantity

discount

Discount

profit

Profit

Second ClassConsumerUnited StatesHendersonKentucky42420SouthFurnitureBookcases261.96241.9136
Second ClassConsumerUnited StatesHendersonKentucky42420SouthFurnitureChairs731.943219.582
Second ClassCorporateUnited StatesLos AngelesCalifornia90036WestOffice SuppliesLabels14.6226.8714
Standard ClassConsumerUnited StatesFort LauderdaleFlorida33311SouthFurnitureTables957.577550.45-383.031
Standard ClassConsumerUnited StatesFort LauderdaleFlorida33311SouthOffice SuppliesStorage22.36820.22.5164
Standard ClassConsumerUnited StatesLos AngelesCalifornia90032WestFurnitureFurnishings48.86714.1694
Standard ClassConsumerUnited StatesLos AngelesCalifornia90032WestOffice SuppliesArt7.2841.9656
Standard ClassConsumerUnited StatesLos AngelesCalifornia90032WestTechnologyPhones907.15260.290.7152
Standard ClassConsumerUnited StatesLos AngelesCalifornia90032WestOffice SuppliesBinders18.50430.25.7825
Standard ClassConsumerUnited StatesLos AngelesCalifornia90032WestOffice SuppliesAppliances114.9534.47

CREATE TABLE samplesuperstore (
  "ship_mode" VARCHAR,
  "segment" VARCHAR,
  "country" VARCHAR,
  "city" VARCHAR,
  "state" VARCHAR,
  "postal_code" BIGINT,
  "region" VARCHAR,
  "category" VARCHAR,
  "sub_category" VARCHAR,
  "sales" DOUBLE,
  "quantity" BIGINT,
  "discount" DOUBLE,
  "profit" DOUBLE
);

Share link

Anyone who has the link will be able to view this.