-- 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
)
;
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.