-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQL analysis
75 lines (64 loc) · 2.7 KB
/
SQL analysis
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
-- View the table Astronauts
select * from astronauts
-- The query groups astronauts by their status, revealing the dynamic tapestry of their careers - active, retired, or otherwise.
select status,count(*) as Number from astronauts
group by status
-- The query groups astronauts by their military branches
select military_branch , count(*) as number from astronauts
group by military_branch
-- Delve into the ranks that these celestial trailblazers once held in their respective armed forces
select military_rank, count(*) as number from astronauts
group by military_rank
order by 2 desc
limit 5
-- The query list number of female and male astronauts
select gender, count(*) as number from astronauts
group by gender
-- Gives the average life expectancy
SELECT ROUND(AVG(
CASE
WHEN status = 'Deceased' THEN YEAR(death_date) - YEAR(birth_date)
ELSE 2023 - YEAR(birth_date)
END
)) AS Average_Life_Expectancy
FROM astronauts;
-- Gives the female average life expectancy
SELECT ROUND(AVG(Female_life_Expectancy)) AS Female_Average_Life_Expectancy
FROM (
SELECT
CASE
WHEN Status = 'Deceased' AND Gender = 'Female' THEN YEAR(death_date) - YEAR(birth_date)
WHEN Status != 'Deceased' AND Gender = 'Female' THEN 2023 - YEAR(birth_date)
END AS Female_life_Expectancy
FROM astronauts
) AS FemaleLifeExpectancy;
-- Gives the male average life expectancy
SELECT ROUND(AVG(Male_life_Expectancy)) AS Male_Average_Life_Expectancy
FROM (
SELECT
CASE
WHEN Status = 'Deceased' AND Gender = 'Male' THEN YEAR(death_date) - YEAR(birth_date)
WHEN Status != 'Deceased' AND Gender = 'Male' THEN 2023 - YEAR(birth_date)
END AS Male_life_Expectancy
FROM astronauts
) AS MaleLifeExpectancy;
-- Top ten graduate majors, offering a glimpse into the educational tapestry that makes up the astronaut corps.
select graduate_major, count(*) as number from astronauts
group by graduate_major
order by 2 desc
limit 10
-- Glimpse into the academic odysseys that have propelled astronauts to the stars.
select count(*) as Number_of_Astronauts, count(undergraduate_major) as Astronauts_with_Undergraduate_Degrees,
count(graduate_major) as Astronauts_with_Graduate_Degrees
from astronauts
-- Top 5 birth states
SELECT
SUBSTRING_INDEX(Birth_Place, ',', -1) AS STATE,
COUNT(*) AS Astronaut_Count
FROM astronauts
GROUP BY STATE
ORDER BY Astronaut_Count DESC
LIMIT 5;
-- The average number of space flights and spacewalks provide insight into the vast range of missions and activities these astronauts have undertaken
select round(avg(space_flights),2) as Average_Number_Of_Space_Flight , round(avg(space_walks),2) as Average_Number_Of_Space_Walks
from astronauts