Load a dataset and run a query to inspect cleaned output.
Practice real-world SQL cleaning on messy customer, HR, and healthcare datasets. Explore duplicates, NULLs, broken formats, invalid dates, outliers, and business-rule issues with guided missions and live query results.
SELECT, then clean with TRIM, CASE, COALESCE, pattern checks, and dedupe logic.
Load a dataset and run a query to inspect cleaned output.
Mission focus appears here after dataset load.
Rows and columns update after each query run.
TRIM(), REPLACE()
NULLIF(), COALESCE()
CASE WHEN ... END
GROUP BY, HAVING
ROW_NUMBER()
LIKE, GLOB, CAST()