New: Cookbooks and AI ExplanationsStep-by-Step recipes to solve problems connected to Roadmaps and Cheat Sheets. Need more details? Use AI buttons for structured and simple explanations with concrete examples throughout the whole platform.Take a look
I need the median and the 90th percentile of a table with ten million rows, and Excel can't even open the file.
What you'll have at the end
A single SQL query that returns the median and a couple of percentiles straight from the full table, with no spreadsheet import.
You need
Read access to a SQL table with a numeric column you want summarized, plus a way to run a query against it without pulling the rows into a spreadsheet first.
Not covered
Doesn't cover splitting the percentile out by a group like region or store; that's the same functions with a GROUP BY added on top.
Checked 26 Aug 2026
Part of the Descriptive Statistics cookbook