About
Terms
SQL
About
Terms
SQL
SELECT
school_year,
ABS(
(
(
SUM(
CASE
WHEN student_subgroup = 'BLACK_OR_AFRICAN_AMERICAN' THEN merged_proficient_or_above_count
ELSE 0
END
) * 100.0
) / (
NULLIF(
SUM(
CASE
WHEN student_subgroup = 'BLACK_OR_AFRICAN_AMERICAN' THEN student_subgroup_total_tested
ELSE 0
END
),
0
)
)
) - (
(
SUM(
CASE
WHEN student_subgroup = 'WHITE' THEN merged_proficient_or_above_count
ELSE 0
END
) * 100.0
) / (
NULLIF(
SUM(
CASE
WHEN student_subgroup = 'WHITE' THEN student_subgroup_total_tested
ELSE 0
END
),
0
)
)
)
) AS achievement_gap
FROM
stats_v3
WHERE
stats_v3.data_level = 'STATE'
AND stats_v3.student_group = 'RACE_ETH'
AND state = 'Michigan'
AND subject = 'MATH'
AND (
student_subgroup = 'BLACK_OR_AFRICAN_AMERICAN'
OR student_subgroup = 'WHITE'
)
AND merged_proficient_or_above_count IS NOT NULL
AND student_subgroup_total_tested IS NOT NULL
AND student_subgroup_total_tested > 0
GROUP BY
school_year
HAVING
(
NULLIF(
SUM(
CASE
WHEN student_subgroup = 'BLACK_OR_AFRICAN_AMERICAN' THEN student_subgroup_total_tested
ELSE 0
END
),
0
)
) > 0
AND (
NULLIF(
SUM(
CASE
WHEN student_subgroup = 'WHITE' THEN student_subgroup_total_tested
ELSE 0
END
),
0
)
) > 0Notable Events
Michigan (2014-15): In 2015, the state administered a new math assessment, the M-STEP. Results are not comparable to prior years.
Michigan (2018-19): Beginning in 2019, Michigan administered the M-STEP math assessment only to students in Grades 3-7, and administered the PSAT to students in Grade 8. Raw data files disaggregate these results.
Michigan (2020-21): Beginning in 2019, Michigan administered the M-STEP math assessment only to students in Grades 3-7, and administered the PSAT to students in Grade 8. Raw data files disaggregate these results.
Michigan (2020-21): Math participation rates in 2021 for the M-STEP were approximately 70%, which is lower than a typical year. Results should be interpreted with caution.
Michigan (2021-22): Beginning in 2019, Michigan administered the M-STEP math assessment only to students in Grades 3-7, and administered the PSAT to students in Grade 8. Raw data files disaggregate these results.
Michigan (2022-23): Beginning in 2019, Michigan administered the M-STEP math assessment only to students in Grades 3-7, and administered the PSAT to students in Grade 8. Raw data files disaggregate these results.
Michigan (2023-24): Beginning in 2019, Michigan administered the M-STEP math assessment only to students in Grades 3-7, and administered the PSAT to students in Grade 8. Raw data files disaggregate these results.
Michigan (2024-25): Beginning in 2019, Michigan administered the M-STEP math assessment only to students in Grades 3-7, and administered the PSAT to students in Grade 8. Raw data files disaggregate these results.
Math vs Social Studies Performance in Michigan (2015)
"Math vs social studies in Michigan for 2015"
Math Scores in Alaska by Grade Over Time
"math scores in alaska by grade over time"
Achievement Gap in Writing Over Time between English Proficient and English Learning Students in Virginia
"Achievement gap in Virginia in writing over time between english proficient and english learning students"
ELA vs Social Studies Performance in Michigan for 2021 by Ethnicity
"ELA vs social studies in Michigan for 2021 by ethnicity"
Math vs Social Studies Performance in Wisconsin by Grade Level (2016)
"Math vs social studies in Wisconsin for 2016 by grade level"