-- write a SQL query to find the name (or names) of the school district(s) with the single least number of pupils.
-- Report only the name(s).
SELECTd."name"
FROM"expenditures"ASe
JOIN"districts"ASd
ONe."district_id"=d."id"
ORDERBY"pupils"ASC
LIMIT1;
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.