10 lines
240 B
SQL
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
|
|
)
|
|
;
|