Screen Link:
https://app.dataquest.io/m/253/summary-statistics/7/customizing-the-results
My Code:
SELECT COUNT(*) AS ‘Number od Majors’,
MAX(Unemployment_rate) ‘Highest Unemployment Rate’
FROM recent_grads;
Replace this line with your code
What I expected to happen:
SELECT COUNT(*) ‘Number of Majors’,
MAX(Unemployment_rate) ‘Highest Unemployment Rate’
FROM recent_grads;
What actually happened:
The value for result doesn’t look right.
Replace this line with the output/error