Supermarket Sales Dataset
Data Analysis Dataset
@kaggle.faresashraf1001_supermarket_sales
Data Analysis Dataset
@kaggle.faresashraf1001_supermarket_sales
"Supermarket Sales Data: This dataset records individual transactions from a supermarket chain in Myanmar, with detailed attributes for each sale. The data includes the following columns:
This dataset can be used for analyzing sales patterns, customer preferences, and payment behaviors, making it ideal for machine learning, business analytics, and data visualization projects."
CREATE TABLE supermarket_analysis (
"invoice_id" VARCHAR,
"branch" VARCHAR,
"city" VARCHAR,
"customer_type" VARCHAR,
"gender" VARCHAR,
"product_line" VARCHAR,
"unit_price" DOUBLE,
"quantity" BIGINT,
"tax_5" DOUBLE -- Tax 5%,
"sales" DOUBLE,
"date" TIMESTAMP,
"time" VARCHAR,
"payment" VARCHAR,
"cogs" DOUBLE,
"gross_margin_percentage" DOUBLE,
"gross_income" DOUBLE,
"rating" DOUBLE
);
Anyone who has the link will be able to view this.