Department Store Sales Dataset
Sales by salespeople at a department store.
@kaggle.raphaelpuziol_department_store_sales_dataset
Sales by salespeople at a department store.
@kaggle.raphaelpuziol_department_store_sales_dataset
This dataset contains information about daily sales conducted by salespeople in a department store, spanning from 2017 to 2022. The primary purpose of this dataset is to provide a robust and versatile foundation for learning data visualization and manipulation. For this reason, all data contained herein is fictional and bears no relation to real companies.
- Seller: Salesperson's name.
CREATE TABLE department_store_dataset (
"seller" VARCHAR,
"department" VARCHAR,
"revenue" DOUBLE,
"revenue_goal" DOUBLE,
"margin" DOUBLE,
"margin_goal" DOUBLE,
"date" TIMESTAMP,
"sales_quantity" BIGINT,
"customers" BIGINT
);
Anyone who has the link will be able to view this.