Zomato Database
A centralized repository of information for seamless food delivery operations
@kaggle.anas123siddiqui_zomato_database
A centralized repository of information for seamless food delivery operations
@kaggle.anas123siddiqui_zomato_database
CREATE TABLE food (
"unnamed_0" BIGINT,
"f_id" VARCHAR,
"item" VARCHAR,
"veg_or_non_veg" VARCHAR
);
CREATE TABLE menu (
"unnamed_0" BIGINT,
"menu_id" VARCHAR,
"r_id" BIGINT,
"f_id" VARCHAR,
"cuisine" VARCHAR,
"price" VARCHAR
);
CREATE TABLE orders (
"unnamed_0" BIGINT,
"order_date" TIMESTAMP,
"sales_qty" BIGINT,
"sales_amount" BIGINT,
"currency" VARCHAR,
"user_id" BIGINT,
"r_id" DOUBLE
);
CREATE TABLE restaurant (
"unnamed_0" BIGINT,
"id" BIGINT,
"name" VARCHAR,
"city" VARCHAR,
"rating" VARCHAR,
"rating_count" VARCHAR,
"cost" VARCHAR,
"cuisine" VARCHAR,
"lic_no" VARCHAR,
"link" VARCHAR,
"address" VARCHAR,
"menu" VARCHAR
);
CREATE TABLE users (
"unnamed_0" BIGINT,
"user_id" BIGINT,
"name" VARCHAR,
"email" VARCHAR,
"password" VARCHAR,
"age" BIGINT,
"gender" VARCHAR,
"marital_status" VARCHAR,
"occupation" VARCHAR,
"monthly_income" VARCHAR,
"educational_qualifications" VARCHAR,
"family_size" BIGINT
);
Anyone who has the link will be able to view this.