How have American baby name tastes changed since 1920? Which names have remained popular for over 100 years, and how do those names compare to more recent top baby names? These are considerations for many new parents, but the skills you'll practice while answering these queries are broadly applicable. After all, understanding trends and popularity is important for many businesses, too!
You'll be working with data provided by the United States Social Security Administration, which lists first names along with the number and sex of babies they were given to in each year. For processing speed purposes, the dataset is limited to first names which were given to over 5,000 American babies in a given year. The data spans 101 years, from 1920 through 2020.
The Data
baby_names
baby_names| column | type | description |
|---|---|---|
year | int | year |
first_name | varchar | first name |
sex | varchar | sex of babies given first_name |
num | int | number of babies of sex given first_name in that year |
-- Run this code to view the data in baby_names
SELECT *
FROM baby_names
LIMIT 5;-- Use this table for the answer to question 1:
SELECT public.baby_names.first_name,sum(public.baby_names.num),
CASE WHEN public.baby_names.num >= 50 THEN 'Classic'
ELSE 'Trendy' END AS popularity_type
FROM public.baby_names
GROUP BY 1,3
ORDER BY public.baby_names.first_name
LIMIT 5;-- Use this table for the answer to question 2:
SELECT RANK() OVER (ORDER BY sum(public.baby_names.num) DESC) AS name_rank, public.baby_names.first_name, sum(public.baby_names.num)
FROM public.baby_names
WHERE public.baby_names.sex = 'M'
GROUP BY public.baby_names.first_name
LIMIT 20;-- Use this table for the answer to question 3:
SELECT public.baby_names.first_name,
count(public.baby_names.first_name) AS total_occurrences
FROM public.baby_names
WHERE public.baby_names.sex = 'F' AND YEAR IN ('1920','2020')
GROUP BY 1
HAVING count(public.baby_names.first_name) >= 2;