Files
me50/6.sql
2026-04-23 16:30:20 +02:00

10 lines
240 B
SQL

-- write a SQL query to find the names of schools (public or charter!) that reported a 100% graduation rate.
SELECT "name"
FROM "schools"
WHERE "id" = (
SELECT "school_id"
FROM "graduation_rates"
WHERE "graduated" = 100
)
;