Predict Customer Churn using SQL

Cover Image for Predict Customer Churn using SQL

Retaining existing customers is vital for organizations looking to grow their business without relying too heavily on the significantly higher cost of acquiring new customers. Marketing, sales, and customer retention departments need to work to make sure customers are satisfied, provide them with incentives, and present offers at the right time to reduce churn. MindsDB can aid churn reduction by analyzing the massive amounts of customer data and interactions necessary to identify and measure customer turnover risk. MindsDB Machine Learning can help marketing, sales, and customer retention teams determine the best incentive and the right time to make an offer to minimize customer turnover.

In this tutorial you will learn how to use SQL queries to train a machine learning model and make predictions in three simple steps:

  1. Connect a database with customers' data to MindsDB (a predictive AI layer for databases).

  2. Use an INSERT statement to train the machine learning model automatically.

  3. Query predictions with a simple SELECT statement from MindsDB "AI Table" (this special table returns data from an ML model upon being queried).

Using SQL to perform machine learning at the data layer will bring you many benefits like removing unnecessary ETL-ing, seamless integration with your data, and enabling predictive analytics in your BI tool. Let's see how this works with real world example to predict the probability of churn for a new customer of a telecom company.

Note that you can follow up on this tutorial by connecting to your own database and using different data - the same workflow applies to most machine learning use cases.

Pre-requisites

We will be using MindsDB Cloud in this tutorial. The first step would be to create a free account on cloud.mindsdb.com. After successful login, you will be redirected to MindsDB Studio.

Alternative installation instructions are available on the MindsDB Getting Started page

Database Connection

First, we need to connect MindsDB to the database where the Customer Churn data is stored. In the left navigation click on Database. Next, click on the ADD DATABASE. Here, we need to provide all of the required parameters for connecting to the database.

  • Supported Database - select the database that you want to connect to

  • Integrations Name - add a name to the integration

  • Database - the database name

  • Host - database hostname

  • Port - database port

  • Username - database user

  • Password - users password

Connect MindsDB to a database

Then, click on CONNECT.

Create Datasource

We have successfully connected MindsDB to the database. Now, we need to create a datasource which requires that we connect MindsDB to the Customer Churn table. Click on the NEW DATASET and add:

  • Datasource Name - the name of the new source you are creating

  • Database - the name of the database to connect

  • Query - SELECT statement to select the data from database e.g SELECT * FROM table_name;

Create a datasource in MindsDB Studio

After filling in all the values click on CREATE. Now, we have successfully created a new Datasource that is connected to the database. The next step is to use the MySQL client to connect to MindsDB’s MySQL API and train a new model to help us predict customer churn.

Connect to MindsDB’s MySQL API

I will use MySQL command line client in the next part of the tutorial but you can follow up with the one that works the best for you, like MySQL Workbench, Dbeaver, etc. The first step we need to do is to use the MindsDB Cloud user to connect to the MySQL API:


mysql -h cloud-mysql.mindsdb.com --port 3306 -u theusername@mail.com -p

In the above command, we specify the hostname and user name explicitly, as well as a password for connecting.

Connect to MindsDB’s MySQL API

If you got the above screen that means you have successfully connected. If you have an authentication error, please make sure you are providing the email you have used to create an account on MindsDB Cloud.

Data Overview

In this tutorial, we will use the customer churn data-set. Each row represents a customer and we will train a machine learning model to help us predict if the customer is going to stop using the company products. Below is a short description of each feature inside the data.

  • CustomerId - Customer ID

  • Gender - Male or Female customerSeniorCitizen - Whether the customer is a senior citizen or not (1, 0)

  • Partner - Whether the customer has a partner or not (Yes, No)Dependents - Whether the customer has dependents or not (Yes, No)

  • Tenure - Number of months the customer has stayed with the company

  • PhoneService - Whether the customer has a phone service or not (Yes, No)

  • MultipleLines - Whether the customer has multiple lines or not (Yes, No, No phone service)

  • InternetService - Customer’s internet service provider (DSL, Fiber optic, No)

  • OnlineSecurity - Whether the customer has online security or not (Yes, No, No internet service)

  • OnlineBackup - Whether the customer has online backup or not (Yes, No, No internet service)

  • DeviceProtection - Whether the customer has device protection or not (Yes, No, No internet service)

  • TechSupport - Whether the customer has tech support or not (Yes, No, No internet service)

  • StreamingTv - Whether the customer has streaming TV or not (Yes, No, No internet service)

  • StreamingMovies - Whether the customer has streaming movies or not (Yes, No, No internet service)

  • Contract - The contract term of the customer (Month-to-month, One year, Two year)

  • PaperlessBilling - Whether the customer has paperless billing or not (Yes, No)

  • PaymentMethod - The customer’s payment method (Electronic check, Mailed check, Bank transfer (automatic), Credit card (automatic))

  • MonthlyCharges - The monthly charge amount

  • TotalCharges - The total amount charged to the customer

  • Churn - Whether the customer churned or not (Yes or No). This is what we want to predict.

Using SQL Statements to train/query models

Now, we will train a new machine learning model from the datasource we have created using MindsDB Studio.
Switch back to mysql-client and run:


use mindsdb;
show tables;

Using SQL Statements to train & query models

You will notice there are 2 tables available inside the MindsDB database. To train a new machine learning model we will need to INSERT a new record inside the predictors table as:

INSERT INTO mindsdb.predictors(name, predict, external_datasource, training_options) 
VALUES('model_name', 'target_variable', 'datasource_name', {“ignore_columns”: []});

The required values that we need to provide are:

  • name (string) - The name of the model

  • predict (string) - The feature you want to predict

  • external_datasource (string) - The datasource name that we have created using MindsDB Studio

  • training_options (JSON as comma-separated string) - optional value that contains additional training parameters. The full list with parameters can be found at PredictorInterface docs

To train the model that will predict customer churn run:


INSERT INTO mindsdb.predictors(name, predict, external_datasource, training_options ) VALUES('churn_model', 'Churn', 'CustomerChurnData', '{"ignore_columns": ["gender"]}');

ML Model Training SQL query

What we did here was to create a model called customer_churn to predict the Churn and also ignore the gender column as an irrelevant column for the model. Also note that the ID columns in this case customerId will be automatically detected by MindsDB and ignored. The model training has started. To check if the training has finished you can SELECT the model name from predictors table:


SELECT * FROM predictors WHERE name='churn_model';

The complete status means that the model training has successfully finished.

ML Model training status check

The next steps would be to query the model and predict the customer churn. Let’s be creative and imagine a customer. Customer will use only DSL service, no phone service and multiple lines, she was with the company for 1 month and has a partner. Add all of this information to the WHERE clause.


SELECT Churn, Churn_confidence, Churn_explain as Info FROM customer_churn WHERE when_data='{"SeniorCitizen": 0, "Partner": "Yes", "Dependents": "No", "tenure": 1, "PhoneService": "No", "MultipleLines": "No phone service", "InternetService": "DSL"}';

ML Model SQL query short

With the confidence of around 82% MindsDB predicted that this customer will churn. One important thing to check here is the important_missing_information value, where MindsDB is pointing to the important missing information for giving a more accurate prediction, in this case, Contract, MonthlyCharges, TotalCharges and OnlineBackup. Let’s include those values in the WHERE clause, and run a new query:


SELECT Churn, Churn_confidence, Churn_explain as Info FROM customer_churn WHERE when_data='{"SeniorCitizen": 0, "Partner": "Yes", "Dependents": "No", "tenure": 1, "PhoneService": "No", "MultipleLines": "No phone service", "InternetService": "DSL", "OnlineSecurity": "No", "OnlineBackup": "Yes", "DeviceProtection": "No", "TechSupport": "No", "StreamingTV": "No", "StreamingMovies": "No", "Contract": "Month-to-month", "PaperlessBilling": "Yes", "PaymentMethod": "Electronic check", "MonthlyCharges": 29.85, "TotalCharges": 29.85}';

ML Model SQL query long

Now, we can see that this customer will still churn but MindsDB is more confident with around 98% for this prediction.

Conclusion

In this tutorial, we saw how easy it is to bring Machine Learning directly to the Database layer and train/query Machine Learning models using SQL queries and demonstrated how to use SQL queries to build a machine learning model and make predictions in three simple steps.

For a limited time, you can try MindsDB to connect to data sources, train models, and run predictions in the cloud. Simply create an account, it’s free (final pricing to be announced later this year), and our team is available on Slack and Github for feedback and support. Check it out and let us know what predictions you come up with.