Customer Subscription Data
Customer purchase and call center volume data for a subscription based product
@kaggle.gsagar12_dspp1
Customer purchase and call center volume data for a subscription based product
@kaggle.gsagar12_dspp1
CREATE TABLE customer_cases (
"unnamed_0" BIGINT,
"case_id" VARCHAR,
"date_time" TIMESTAMP,
"customer_id" VARCHAR,
"channel" VARCHAR,
"reason" VARCHAR
);
CREATE TABLE customer_info (
"unnamed_0" BIGINT,
"customer_id" VARCHAR,
"age" BIGINT,
"gender" VARCHAR
);
CREATE TABLE customer_product (
"unnamed_0" BIGINT,
"customer_id" VARCHAR,
"product" VARCHAR,
"signup_date_time" TIMESTAMP,
"cancel_date_time" TIMESTAMP
);
CREATE TABLE product_info (
"product_id" VARCHAR,
"name" VARCHAR,
"price" BIGINT,
"billing_cycle" BIGINT
);
Anyone who has the link will be able to view this.