Pizza Place Sales Analysis
An overview of pizza sales data from Jan 2015 to Dec 2015.
@kaggle.ankitrajmishra_pizza_place_sales_analysis
An overview of pizza sales data from Jan 2015 to Dec 2015.
@kaggle.ankitrajmishra_pizza_place_sales_analysis
CREATE TABLE orders (
"order_id" BIGINT,
"date" TIMESTAMP,
"time" VARCHAR
);
CREATE TABLE order_details (
"order_details_id" BIGINT,
"order_id" BIGINT,
"pizza_id" VARCHAR,
"quantity" BIGINT
);
CREATE TABLE pizzas (
"pizza_id" VARCHAR,
"pizza_type_id" VARCHAR,
"size" VARCHAR,
"price" DOUBLE
);
Anyone who has the link will be able to view this.