{"id":28276830,"url":"https://github.com/ashwinwilson/sql_data_analyst_jobs","last_synced_at":"2026-04-17T00:02:13.714Z","repository":{"id":276176570,"uuid":"928465827","full_name":"AshwinWilson/SQL_Data_Analyst_Jobs","owner":"AshwinWilson","description":"Dive into the data job market! Focusing on data analyst roles, this project explores  top-paying jobs, in-demand skills, and where high demand meets high salary in data analytics.","archived":false,"fork":false,"pushed_at":"2025-05-16T09:08:49.000Z","size":214,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T10:41:20.584Z","etag":null,"topics":["excel","git","postgresql","vscode"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AshwinWilson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-06T17:28:36.000Z","updated_at":"2025-05-16T09:08:52.000Z","dependencies_parsed_at":"2025-05-16T10:22:45.078Z","dependency_job_id":"006beecc-ae10-4f87-a489-da9144b0da29","html_url":"https://github.com/AshwinWilson/SQL_Data_Analyst_Jobs","commit_stats":null,"previous_names":["ashwinwilson/sql_data_analyst_jobs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AshwinWilson/SQL_Data_Analyst_Jobs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AshwinWilson%2FSQL_Data_Analyst_Jobs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AshwinWilson%2FSQL_Data_Analyst_Jobs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AshwinWilson%2FSQL_Data_Analyst_Jobs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AshwinWilson%2FSQL_Data_Analyst_Jobs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AshwinWilson","download_url":"https://codeload.github.com/AshwinWilson/SQL_Data_Analyst_Jobs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AshwinWilson%2FSQL_Data_Analyst_Jobs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31909235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["excel","git","postgresql","vscode"],"created_at":"2025-05-21T05:11:32.351Z","updated_at":"2026-04-17T00:02:13.686Z","avatar_url":"https://github.com/AshwinWilson.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\nDive into the data job market! Focusing on data analyst roles, this project explores top-paying jobs, in-demand skills, and where high demand meets high salary in data analytics.\n\n\n\n# Background\nDriven by a quest to navigate the data analyst job market more effectively, this project was born from a desire to pinpoint top-paid and in-demand skills, streamlining others work to find optimal jobs.\n\n### The questions I wanted to answer through my SQL queries were:\n\n1. What are the top-paying data analyst jobs?\n2. What skills are required for these top-paying jobs?\n3. What skills are most in demand for data analysts?\n4. Which skills are associated with higher salaries?\n5. What are the most optimal skills to learn?\n\n# Tools I Used\nFor my deep dive into the data analyst job market, I harnessed the power of several key tools:\n\n- **SQL:** The backbone of my analysis, allowing me to query the database and unearth critical insights.\n- **PostgreSQL:** The chosen database management system, ideal for handling the job posting data.\n- **Visual Studio Code:** My go-to for database management and executing SQL queries.\n- **Git \u0026 GitHub:** Essential for version control and sharing my SQL scripts and analysis, ensuring collaboration and project tracking.\n\n# The Analysis\nEach query for this project aimed at investigating specific aspects of the data analyst job market. Here’s how I approached each question:\n\n### 1. Top Paying Data Analyst Jobs\nTo identify the highest-paying roles, I filtered data analyst positions by average yearly salary and location, focusing on remote jobs. This query highlights the high paying opportunities in the field.\n\n```sql\nSELECT\t\n\tjob_id,\n\tjob_title,\n\tjob_location,\n\tjob_schedule_type,\n\tsalary_year_avg,\n\tjob_posted_date,\n    name AS company_name\nFROM\n    job_postings_fact\nLEFT JOIN company_dim ON job_postings_fact.company_id = company_dim.company_id\nWHERE\n    job_title_short = 'Data Analyst' AND \n    job_location = 'Anywhere' AND \n    salary_year_avg IS NOT NULL\nORDER BY\n    salary_year_avg DESC\nLIMIT 10;\n```\nHere's the breakdown of the top data analyst jobs in 2023:\n- **Wide Salary Range:** Top 10 paying data analyst roles span from $184,000 to $650,000, indicating significant salary potential in the field.\n- **Diverse Employers:** Companies like SmartAsset, Meta, and AT\u0026T are among those offering high salaries, showing a broad interest across different industries.\n- **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.\n\n![Top Paying Roles](assets/1_top_paying_roles.png)\n*Bar graph visualizing the salary for the top 10 salaries for data analysts; ChatGPT generated this graph from my SQL query results*\n\n### 2. Skills for Top Paying Jobs\nTo understand what skills are required for the top-paying jobs, I joined the job postings with the skills data, providing insights into what employers value for high-compensation roles.\n```sql\nWITH top_paying_jobs AS (\n    SELECT\t\n        job_id,\n        job_title,\n        salary_year_avg,\n        name AS company_name\n    FROM\n        job_postings_fact\n    LEFT JOIN company_dim ON job_postings_fact.company_id = company_dim.company_id\n    WHERE\n        job_title_short = 'Data Analyst' AND \n        job_location = 'Anywhere' AND \n        salary_year_avg IS NOT NULL\n    ORDER BY\n        salary_year_avg DESC\n    LIMIT 10\n)\n\nSELECT \n    top_paying_jobs.*,\n    skills\nFROM top_paying_jobs\nINNER JOIN skills_job_dim ON top_paying_jobs.job_id = skills_job_dim.job_id\nINNER JOIN skills_dim ON skills_job_dim.skill_id = skills_dim.skill_id\nORDER BY\n    salary_year_avg DESC;\n```\nHere's the breakdown of the most demanded skills for the top 10 highest paying data analyst jobs in 2023:\n- **SQL** is leading with a bold count of 8.\n- **Python** follows closely with a bold count of 7.\n- **Tableau** is also highly sought after, with a bold count of 6.\nOther skills like **R**, **Snowflake**, **Pandas**, and **Excel** show varying degrees of demand.\n\n![Top Paying Skills](assets/2_top_paying_roles_skills.png)\n*Bar graph visualizing the count of skills for the top 10 paying jobs for data analysts; ChatGPT generated this graph from my SQL query results*\n\n### 3. In-Demand Skills for Data Analysts\n\nThis query helped identify the skills most frequently requested in job postings, directing focus to areas with high demand.\n\n```sql\nSELECT \n    skills,\n    COUNT(skills_job_dim.job_id) AS demand_count\nFROM job_postings_fact\nINNER JOIN skills_job_dim ON job_postings_fact.job_id = skills_job_dim.job_id\nINNER JOIN skills_dim ON skills_job_dim.skill_id = skills_dim.skill_id\nWHERE\n    job_title_short = 'Data Analyst' \n    AND job_work_from_home = True \nGROUP BY\n    skills\nORDER BY\n    demand_count DESC\nLIMIT 5;\n```\nHere's the breakdown of the most demanded skills for data analysts in 2023\n- **SQL** and **Excel** remain fundamental, emphasizing the need for strong foundational skills in data processing and spreadsheet manipulation.\n- **Programming** and **Visualization Tools** like **Python**, **Tableau**, and **Power BI** are essential, pointing towards the increasing importance of technical skills in data storytelling and decision support.\n\n| Skills   | Demand Count |\n|----------|--------------|\n| SQL      | 7291         |\n| Excel    | 4611         |\n| Python   | 4330         |\n| Tableau  | 3745         |\n| Power BI | 2609         |\n\n*Table of the demand for the top 5 skills in data analyst job postings*\n\n### 4. Skills Based on Salary\nExploring the average salaries associated with different skills revealed which skills are the highest paying.\n```sql\nSELECT \n    skills,\n    ROUND(AVG(salary_year_avg), 0) AS avg_salary\nFROM job_postings_fact\nINNER JOIN skills_job_dim ON job_postings_fact.job_id = skills_job_dim.job_id\nINNER JOIN skills_dim ON skills_job_dim.skill_id = skills_dim.skill_id\nWHERE\n    job_title_short = 'Data Analyst'\n    AND salary_year_avg IS NOT NULL\n    AND job_work_from_home = True \nGROUP BY\n    skills\nORDER BY\n    avg_salary DESC\nLIMIT 25;\n```\nHere's a breakdown of the results for top paying skills for Data Analysts:\n- **High Demand for Big Data \u0026 ML Skills:** Top salaries are commanded by analysts skilled in big data technologies (PySpark, Couchbase), machine learning tools (DataRobot, Jupyter), and Python libraries (Pandas, NumPy), reflecting the industry's high valuation of data processing and predictive modeling capabilities.\n- **Software Development \u0026 Deployment Proficiency:** Knowledge in development and deployment tools (GitLab, Kubernetes, Airflow) indicates a lucrative crossover between data analysis and engineering, with a premium on skills that facilitate automation and efficient data pipeline management.\n- **Cloud Computing Expertise:** Familiarity with cloud and data engineering tools (Elasticsearch, Databricks, GCP) underscores the growing importance of cloud-based analytics environments, suggesting that cloud proficiency significantly boosts earning potential in data analytics.\n\n| Skills        | Average Salary ($) |\n|---------------|-------------------:|\n| pyspark       |            208,172 |\n| bitbucket     |            189,155 |\n| couchbase     |            160,515 |\n| watson        |            160,515 |\n| datarobot     |            155,486 |\n| gitlab        |            154,500 |\n| swift         |            153,750 |\n| jupyter       |            152,777 |\n| pandas        |            151,821 |\n| elasticsearch |            145,000 |\n\n*Table of the average salary for the top 10 paying skills for data analysts*\n\n### 5. Most Optimal Skills to Learn\n\nCombining insights from demand and salary data, this query aimed to pinpoint skills that are both in high demand and have high salaries, offering a strategic focus for skill development.\n\n```sql\nSELECT \n    skills_dim.skill_id,\n    skills_dim.skills,\n    COUNT(skills_job_dim.job_id) AS demand_count,\n    ROUND(AVG(job_postings_fact.salary_year_avg), 0) AS avg_salary\nFROM job_postings_fact\nINNER JOIN skills_job_dim ON job_postings_fact.job_id = skills_job_dim.job_id\nINNER JOIN skills_dim ON skills_job_dim.skill_id = skills_dim.skill_id\nWHERE\n    job_title_short = 'Data Analyst'\n    AND salary_year_avg IS NOT NULL\n    AND job_work_from_home = True \nGROUP BY\n    skills_dim.skill_id\nHAVING\n    COUNT(skills_job_dim.job_id) \u003e 10\nORDER BY\n    avg_salary DESC,\n    demand_count DESC\nLIMIT 25;\n```\n\n| Skill ID | Skills     | Demand Count | Average Salary ($) |\n|----------|------------|--------------|-------------------:|\n| 8        | go         | 27           |            115,320 |\n| 234      | confluence | 11           |            114,210 |\n| 97       | hadoop     | 22           |            113,193 |\n| 80       | snowflake  | 37           |            112,948 |\n| 74       | azure      | 34           |            111,225 |\n| 77       | bigquery   | 13           |            109,654 |\n| 76       | aws        | 32           |            108,317 |\n| 4        | java       | 17           |            106,906 |\n| 194      | ssis       | 12           |            106,683 |\n| 233      | jira       | 20           |            104,918 |\n\n*Table of the most optimal skills for data analyst sorted by salary*\n\nHere's a breakdown of the most optimal skills for Data Analysts in 2023: \n- **High-Demand Programming Languages:** Python and R stand out for their high demand, with demand counts of 236 and 148 respectively. Despite their high demand, their average salaries are around $101,397 for Python and $100,499 for R, indicating that proficiency in these languages is highly valued but also widely available.\n- **Cloud Tools and Technologies:** Skills in specialized technologies such as Snowflake, Azure, AWS, and BigQuery show significant demand with relatively high average salaries, pointing towards the growing importance of cloud platforms and big data technologies in data analysis.\n- **Business Intelligence and Visualization Tools:** Tableau and Looker, with demand counts of 230 and 49 respectively, and average salaries around $99,288 and $103,795, highlight the critical role of data visualization and business intelligence in deriving actionable insights from data.\n- **Database Technologies:** The demand for skills in traditional and NoSQL databases (Oracle, SQL Server, NoSQL) with average salaries ranging from $97,786 to $104,534, reflects the enduring need for data storage, retrieval, and management expertise.\n\n# What I Learned\n\nThroughout this adventure, I've turbocharged my SQL toolkit with some serious firepower:\n\n- ** Complex Query Crafting:** Mastered the art of advanced SQL, merging tables like a pro and wielding WITH clauses for ninja-level temp table maneuvers.\n- ** Data Aggregation:** Got cozy with GROUP BY and turned aggregate functions like COUNT() and AVG() into my data-summarizing sidekicks.\n- ** Analytical Wizardry:** Leveled up my real-world puzzle-solving skills, turning questions into actionable, insightful SQL queries.\n\n# Conclusions\n\n### Insights\nFrom the analysis, several general insights emerged:\n\n1. **Top-Paying Data Analyst Jobs**: The highest-paying jobs for data analysts that allow remote work offer a wide range of salaries, the highest at $650,000!\n2. **Skills for Top-Paying Jobs**: High-paying data analyst jobs require advanced proficiency in SQL, suggesting it’s a critical skill for earning a top salary.\n3. **Most In-Demand Skills**: SQL is also the most demanded skill in the data analyst job market, thus making it essential for job seekers.\n4. **Skills with Higher Salaries**: Specialized skills, such as SVN and Solidity, are associated with the highest average salaries, indicating a premium on niche expertise.\n5. **Optimal Skills for Job Market Value**: SQL leads in demand and offers for a high average salary, positioning it as one of the most optimal skills for data analysts to learn to maximize their market value.\n\n### Closing Thoughts\n\nThis project enhanced my SQL skills and provided valuable insights into the data analyst job market. The findings from the analysis serve as a guide to prioritizing skill development and job search efforts. Aspiring data analysts can better position themselves in a competitive job market by focusing on high-demand, high-salary skills. This exploration highlights the importance of continuous learning and adaptation to emerging trends in the field of data analytics.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashwinwilson%2Fsql_data_analyst_jobs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashwinwilson%2Fsql_data_analyst_jobs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashwinwilson%2Fsql_data_analyst_jobs/lists"}