Baselight

Pizza Sales Dataset

Dive into Comprehensive Order Details for Analysis and extract insights.

@kaggle.nextmillionaire_pizza_sales_dataset

About this Dataset

Pizza Sales Dataset

This dataset contain detailed information about pizza orders, including specifics about the pizza variants, quantities, pricing, dates, times, and categorization details.

pizza_id: A unique identifier assigned to each distinct pizza variant available for ordering.
order_id: A unique identifier for each order made, which links to multiple pizzas.
pizza_name_id: An identifier linking to a specific name of the pizza.
quantity: The number of units of a specific pizza variant ordered within an order.
order_date: The date when the order was placed.
order_time: The time when the order was placed.
unit_price: The cost of a single unit of the specific pizza variant.
total_price: The aggregated cost of all units of a specific pizza variant in an order.
pizza_size: Represents the size of the pizza (e.g., small, medium, large).
pizza_category: Indicates the category of the pizza, such as vegetarian, non-vegetarian, etc.
pizza_ingredients: Provides a list or description of the ingredients used in the pizza.
pizza_name: Specifies the name of the specific pizza variant ordered.

Tables

Pizza Sales

@kaggle.nextmillionaire_pizza_sales_dataset.pizza_sales
  • 815.07 KB
  • 48620 rows
  • 12 columns
Loading...

CREATE TABLE pizza_sales (
  "pizza_id" DOUBLE,
  "order_id" DOUBLE,
  "pizza_name_id" VARCHAR,
  "quantity" DOUBLE,
  "order_date" VARCHAR,
  "order_time" VARCHAR,
  "unit_price" DOUBLE,
  "total_price" DOUBLE,
  "pizza_size" VARCHAR,
  "pizza_category" VARCHAR,
  "pizza_ingredients" VARCHAR,
  "pizza_name" VARCHAR
);