This project explores top-paying jobs, in-demand skills, and where high demand meets high salary in data anlytics.
This project pinpoint the top-paid and in-demand skills, streamling others work to find optimal jobs.
- What are the top-paying data analyst jobs.
- What skills are required for these top-paying jobs?
- What skills are most in demand for data analysts
- Which skills are associated with higher salaries
- What are the most optimal skills to learn?
- SQL: Used to query the database and unearth critical insights.
- PostgreSQL: The chosen DBMS
- VS Code: The code Editor used for executing SQL queries and managing the database
- Git & GitHub: The version control used for sharing the SQL scripts and analysis.
Each query for this project aimed at investigating specific aspects of the data analyst job market.
To identify the highest-paying roles, the data analyst positions were filtered by the avaerage yearly salary and location, focusing on remote jobs.
SELECT
job_postings_fact.job_id,
job_postings_fact.job_title,
company_dim.name AS company_name,
job_postings_fact.job_location,
job_postings_fact.job_schedule_type,
job_postings_fact.salary_year_avg,
job_postings_fact.job_posted_date
FROM job_postings_fact
LEFT JOIN company_dim ON company_dim.company_id=job_postings_fact.company_id
WHERE
job_title_short = 'Data Analyst' AND
job_location = 'Anywhere' AND
salary_year_avg IS NOT NULL
ORDER BY salary_year_avg DESC
LIMIT 10;Here is the interpretation:
- Wide Salary Range: Top 10 paying data analyst roles span from $184,000 to $650,000 indicaitng significant salary potentintal in the file
- Diverse Employers: Companies like SmartAsset, Meta and AT&T are among those offering high salaries, showing a broad interest across different industries
- Job Title Variety: There's a high diversity in job titles, from Data Analyst to Director of Analytics, reflecting varied roles and specializations within data analytics.
- Complex Query Crafting: Mastered the art of advanced SQL, merging tables and using
WITHclauses for table maneuvering - Data Aggregation: Used
GROUP BYand turned aggregate functions likeCOUNT()andAVG(). - Analytical Thinking: Practiced real-world puzzle-solving skills, turning questions into actionable, insightful SQL queries
The highest-paying jobs for data analysts that allow remote work offer a wide range of salaries, the highest at $650,000