I have Search Console data stored in SQL table searchconsole.searchdata_site_impression. It has the following fields:
I want to see countries with highest number of clicks. Add information about impressions to the final table.
SELECT country, SUM(clicks) AS total_clicks, SUM(impressions) AS total_impressions FROM searchconsole.searchdata_site_impression GROUP BY country ORDER BY total_clicks DESC