🧭 Context & Challenge:
GoodThought is a global NGO working in education, healthcare, and sustainable development.
The challenge was to extract meaningful insights from a complex relational database covering assignments, funding, and donor behavior – to reveal which regions and initiatives had the most impact and financial support.
Identify the most impactful project per region (based on impact_score)
Rank projects with the highest donation volume by donor type
Combine funding and operational performance metrics
Deliver clean, prioritized insights for leadership and reporting
Used WITH CTEs to isolate and rank performance data
Joined donations, donors, and assignments to connect funding with donor type
Applied ROW_NUMBER() partitioning to identify top impact per region
Aggregated donation volume by assignment_id and donor_type
Ordered final outputs by relevance: highest funding and impact
This project showed how relational SQL logic (joins, partitions, aggregations) can be used to inform funding strategy in a nonprofit setting.
By linking donation behavior with project results, I delivered actionable recommendations for targeting donors, allocating funds, and reporting regional success.
It’s a strong example of how clean, well-organized SQL logic can turn raw transactional data into decision-ready insight.