Write a SQL query to identify patient drop-off points in a multi-stage enrollment funnel at Amgen.
Use the provided patient, enrollment status, and funnel stage data. Identify stages where fewer patients reached the stage than reached the immediately preceding stage, including the number and percentage lost.
Output
- One row per stage with a drop-off.
- Include
stage_order, stage_name, patients_completed, previous_stage_completed, drop_off_count, and drop_off_rate_pct.
- Exclude the first stage and stages without a drop-off. Order by
stage_order ascending.