About the Data

The information is provided “as-is” without any warranties or guarantees of accuracy. Please do not rely on this data set to solve personal legal problems.

Current version: 2.0
Published on: 2026-06-08

Caseload Per Annum

SELECT '20' || SPLIT_PART(case_number, '-', 2) as start_year, judge_name, count(DISTINCT SPLIT_PART(case_number, '-', 3)) as count
FROM case_defendant 
WHERE status LIKE '%CASE CLOSED%'
GROUP BY start_year, judge_name