-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQ2_Top_Paying_Jobs_Skill.sql
More file actions
59 lines (48 loc) · 1.7 KB
/
Q2_Top_Paying_Jobs_Skill.sql
File metadata and controls
59 lines (48 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
Question: What skills are required for the top-paying data analyst jobs?
- Use the top 10 highest-paying Data Analyst jobs from first query
- Add the specific skills required for these roles
- Why? It provides a detailed look at which high-paying jobs demand certain skills,
helping job seekers understand which skills to develop that align with top salaries
*/
WITH TopDataAnalystJobs AS (
SELECT
job_id,
job_title,
salary_year_avg,
name AS company_name
FROM
jobs
LEFT JOIN companies ON jobs.company_id = companies.company_id
WHERE
salary_year_avg IS NOT NULL
AND job_location = 'Anywhere'
AND job_title_short = 'Data Analyst'
ORDER BY
salary_year_avg DESC
LIMIT 10
)
SELECT
tda.*,
skills
FROM
TopDataAnalystJobs tda
JOIN job_skill js ON tda.job_id = js.job_id
JOIN skills ON js.skill_id = skills.skill_id
ORDER BY
salary_year_avg DESC;
/*
Insights
Most In-Demand Skills:
SQL is the most in-demand skill, appearing in 7 out of the 10 top-paying data analyst job postings.
Tableau is the second most mentioned skill, appearing 4 times.
Programming Languages:
Python is a highly sought-after programming language, with 3 mentions.
Other programming languages like Java, R, Scala, and C++ also appear but less frequently.
Data Tools:
Visualization tools like Tableau, Looker, and Power BI are commonly required.
Data storage and processing tools such as Hadoop, Snowflake, Redshift, and Databricks are also valued.
General Tools and Platforms:
Tools like Excel and Git are essential.
Collaboration tools like Atlassian, Jira, and Confluence are also mentioned, indicating the importance of teamwork and project management skills.
*/