Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Tulspal
.
Toggle Highlighting
SQL
WITH genderEdits AS ( SELECT up.up_value AS gender, substr(r.rev_timestamp,1,4) AS year, COUNT(r.rev_id) AS revision_count FROM user AS u LEFT JOIN user_properties AS up ON u.user_id = up.up_user LEFT JOIN revision AS r ON u.user_id = r.rev_user WHERE YEAR(u.user_registration) IN (2019, 2021, 2022, 2023, 2024) AND up.up_property = 'gender' GROUP BY up.up_value, substr(r.rev_timestamp,1,4) ) SELECT year, ROUND(SUM(CASE WHEN gender = 'male' THEN revision_count ELSE 0 END) / NULLIF(SUM(revision_count), 0), 2) AS male_ratio, ROUND(SUM(CASE WHEN gender = 'female' THEN revision_count ELSE 0 END) / NULLIF(SUM(revision_count), 0), 2) AS female_ratio, ROUND(SUM(CASE WHEN gender = 'male' THEN revision_count ELSE 0 END) / NULLIF(SUM(CASE WHEN gender = 'female' THEN revision_count ELSE 0 END), 0), 2) AS male_female_ratio FROM genderEdits WHERE year IN ('2019', '2021', '2022', '2023', '2024') GROUP BY year ORDER BY year;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...