Telco Product Subscription Data
Network Subscription data
@kaggle.gemalarahmani_telco_product_subscription_data
Network Subscription data
@kaggle.gemalarahmani_telco_product_subscription_data
CREATE TABLE customerdata (
"customer_id" BIGINT,
"customer_name" VARCHAR,
"city" VARCHAR,
"province" VARCHAR,
"age" BIGINT,
"region" VARCHAR,
"customer_segment" VARCHAR,
"lifetime_value" DOUBLE
);
CREATE TABLE productplan (
"id" BIGINT,
"plan_name" VARCHAR,
"period" VARCHAR,
"plan_price" BIGINT,
"network_type" VARCHAR,
"has_bundling" VARCHAR,
"category" VARCHAR,
"quota" BIGINT
);
CREATE TABLE subscriptiondata (
"id" BIGINT,
"subscribe_date" TIMESTAMP,
"customer_id" BIGINT,
"plan_id" BIGINT,
"discount" DOUBLE
);
Anyone who has the link will be able to view this.