-- write a SQL query to display the names of all school districts and the number of pupils enrolled in each.
SELECTd."name",e."pupils"
FROM"expenditures"ASe
JOIN"districts"ASd
ONe."district_id"=d."id";
-- WHERE d."name" = 'Cambridge';
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.