Now that you've discovered some key insights based on pre-defined questions, it's time to provide some additional insights of your own!
To obtain key insights fora given table, it's always good to start by start by runningSELECT * FROM table_nameandDESCRIBE table_name.
You should review the data,looking for interesting patterns.Then you will develop questions or hypothesesand write queries to test them.
Don't forget, key insights don't have to be staggering. They just have to be useful.
The data we are providing is not perfect. There is no need to correct any data, but pointing out concerns or general data issues you see in specific columns can be part of your insights.
Your goal is to find at least one key insight per table.
Your insights should be written as comments in your SQL file as complete sentences.
Submit your SQL code along with the insight in the following format. A single line comment referencing the table, followed by your query and a multiline comment containing your key insight.
-- grp_member
SELECT
hometown,
COUNT(*) ct
FROM grp_member
GROUP BY hometown
ORDER BY ct DESC;
/*LetsMeetmembers come from all over the world.
Most of the international members come fromLondon, Paris, and Hong Kong.
The number of members who's hometown is outside of North America
is relativelysmall compared to the number of members who come from
North American cities like New York, Chicago, and San Francisco*/
Insights and queries that are related to the same table should be grouped together.
You should write your additional insights in the SQL file named2_additional_insights.sql.