- The team needs to understand how often customers phone customer support again after their first inquiry; this will help leaders understand whether the team is able to answer customer questions the first time. Further, leaders want to explore trends in repeat calls to identify why customers are having to call more than once, as well as how to improve the overall customer experience. A dashboard should be created to reveal insights about repeat callers.
- The data was provided by the Google Fiber Team in form of CSV files
- The data was ingested into BigQuery and a UNION ALL statement is used.
-
This query combines all the data from three different tables (
market_1
,market_2
, andmarket_3
) into a single list. It uses theUNION ALL
command, which ensures that every row from each table is included, even if there are duplicates. It merges the tables' contents without any filtering. -
The result was then saved into a CSV to be used in Tableau for analysis.
-
A target table is then used to consolidate and store the dataset for visualization on Tableau. The
UNION ALL
statement is applied here instead of aJOIN
statement because the tables already have matching columns, making it easy to merge completely.