Supermarket Dataset
your go-to destination for analyzing retail transactions
@kaggle.saurabhbadole_supermarket_data
your go-to destination for analyzing retail transactions
@kaggle.saurabhbadole_supermarket_data
Explore the dynamics of supermarket sales with the Supermarket Sales Dataset. This dataset contains transactional records capturing details of products sold, quantities purchased, prices, and customer information across various countries. Dive into the world of retail analytics and uncover insights into transaction patterns and customer behaviour.
Invoice: This feature represents a unique identifier for each transaction or invoice in the dataset.
StockCode: This feature represents a unique identifier for each product or item sold in the transaction.
Description: This feature provides a textual description of the product or item sold in the transaction.
Quantity: This feature indicates the quantity of the product or item sold in the transaction.
InvoiceDate: This feature represents the date and time when the transaction or invoice was issued.
Price: This feature represents the price of each unit of the product or item sold in the transaction.
Customer ID: This feature represents a unique identifier for each customer involved in the transaction.
Country: This feature represents the country where the transaction took place or where the customer is located.
CREATE TABLE supermarket_data (
"invoice" VARCHAR,
"stockcode" VARCHAR,
"description" VARCHAR,
"quantity" BIGINT,
"invoicedate" VARCHAR,
"price" DOUBLE,
"customer_id" DOUBLE,
"country" VARCHAR
);Anyone who has the link will be able to view this.