automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-23 17:10:00 +02:00
parent 83c2c00ba5
commit 42947a300c

2
6.sql
View File

@@ -1,7 +1,7 @@
-- 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" = (
WHERE "id" IN (
SELECT "school_id"
FROM "graduation_rates"
WHERE "graduated" = 100