Tell me about your projects and how you collect, clean, and manipulate data using SQL.
Use the provided project, batch, and cleaning-event tables to demonstrate the SQL work behind that process. Write a query that summarizes first-quarter 2025 collection and cleaning activity for every project.
Output
- One row per project, including projects without qualifying batches.
- Return
project_id, project_name, collected_rows, valid_rows, cleaned_rows, validation_rate, and latest_cleaned_at.
- Treat missing numeric totals as zero, return
NULL for validation_rate when no rows were collected, and order by project_id ascending.