Files
me50/6.sql
2026-04-23 17:10:00 +02:00

10 lines
241 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" IN (
SELECT "school_id"
FROM "graduation_rates"
WHERE "graduated" = 100
)
;