Baselight

Retail Sales Dataset

Unveiling Retail Trends: A Dive into Sales Patterns and Customer Profiles

@kaggle.mohammadtalib786_retail_sales_dataset

Retail Sales Dataset
@kaggle.mohammadtalib786_retail_sales_dataset.retail_sales_dataset

  • 23.48 KB
  • 1000 rows
  • 9 columns
transaction_id

Transaction ID

date

Date

customer_id

Customer ID

gender

Gender

age

Age

product_category

Product Category

quantity

Quantity

price_per_unit

Price Per Unit

total_amount

Total Amount

1Fri Nov 24 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST001Male34Beauty350150
2Mon Feb 27 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST002Female26Clothing25001000
3Fri Jan 13 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST003Male50Electronics13030
4Sun May 21 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST004Male37Clothing1500500
5Sat May 06 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST005Male30Beauty250100
6Tue Apr 25 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST006Female45Beauty13030
7Mon Mar 13 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST007Male46Clothing22550
8Wed Feb 22 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST008Male30Electronics425100
9Wed Dec 13 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST009Male63Electronics2300600
10Sat Oct 07 2023 00:00:00 GMT+0000 (Coordinated Universal Time)CUST010Female52Clothing450200

CREATE TABLE retail_sales_dataset (
  "transaction_id" BIGINT,
  "date" TIMESTAMP,
  "customer_id" VARCHAR,
  "gender" VARCHAR,
  "age" BIGINT,
  "product_category" VARCHAR,
  "quantity" BIGINT,
  "price_per_unit" BIGINT,
  "total_amount" BIGINT
);

Share link

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