This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* What are the Top 25 schools (.edu domains)?*/ | |
| SELECT email_domain, COUNT (*) AS "Num of Students" | |
| FROM users | |
| GROUP BY 1 | |
| ORDER BY COUNT(email_domain) DESC | |
| LIMIT 25; | |
| /* edu in NY*/ |