automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-23 16:30:20 +02:00
parent 8c90a45a17
commit 83c2c00ba5

9
6.sql
View File

@@ -0,0 +1,9 @@
-- 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
)
;