Utility Queries
Active Student Subquery
Use the subquery below to filter your results, returning only active or currently enrolled students for the current term.
See example below for how you would use the subquery in the 'Student Persistence Predictions' example.
First-Generation College Student Academic Performance Analysis
This query compares first-year academic performance and engagement patterns between first-generation and continuing-generation college students by analyzing students with complete academic records during their initial terms. It examines performance gaps, engagement levels, and risk indicators to support targeted intervention programs and equity initiatives aimed at closing achievement gaps and improving first-generation student outcomes. Target Population: First-year students with complete academic records (start term, grades, and section enrollment data)
Key Metrics:
- Generation Status: Classification as First Generation, Continuing Generation, or N/A (no generation data)
- Academic Performance: First-year GPA, withdrawal counts, and courses attempted
- Engagement Metrics: Days active online and total LMS activities
- Continuation Rates: Percentage of terms successfully continued
- Risk Indicators: Low GPA (below 2.0), high withdrawal (2+ withdrawals), and low engagement (under 30 days online)
- Student Distribution: Count per generation status against total first-year population
Note: Analysis focuses on students during their first year only (terms within start_term_sequence_no + 2). Population represents students with complete academic records, not total active enrollment. The N/A category includes students without generation data.
Developmental Education Effectiveness Analysis
Purpose: Analyze success rates and progression patterns through developmental education programs to assess program effectiveness and identify improvement opportunities.
Key Metrics:
- First Attempt Success Rate: Percentage of students who pass on their first enrollment attempt
- Overall Pass Rate: Total success rate across all attempts for each program
- Progression Rate: Percentage of successful students who advance to college-level courses in the same subject (NULL for transition programs without college equivalents)
- Average College GPA: Performance of progressed students in college-level coursework
- Average Days to Progression: Time between dev ed completion and college-level enrollment
Usage Options:
Default: Shows only viable programs (10+ students, active since 2015, <90% withdrawals) All Programs: Comment out the WHERE clause on viable_dev_programs CTE to include discontinued/low-enrollment programs Recent Only: Modify latest_enrollment >= '2020-01-01' for more recent analysis Custom Threshold: Adjust unique_students >= 50 for larger program analysis
Note: Transition programs (ETP, preparatory courses) show NULL progression rates as they feed into other academic subjects rather than same-subject college courses.