Skip to content

Instantly share code, notes, and snippets.

View YarelysRR's full-sized avatar

Yarelys Rivera YarelysRR

View GitHub Profile
@YarelysRR
YarelysRR / RDB.sqlite
Created October 4, 2022 17:36
Codecademy Learners Mockup Data
/* 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*/