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 u.user_id, up.up_value AS Gender, COUNT(r.rev_id) AS edit_count FROM user u LEFT JOIN user_properties up ON up.up_user = u.user_id LEFT JOIN revision r ON r.rev_id = u.user_id WHERE YEAR(u.user_registration) BETWEEN 2019 AND 2024 AND up.up_property = 'gender' AND up.up_value IN ('male', 'female') GROUP BY u.user_id, up.up_value HAVING COUNT(r.rev_id) > 50 ) SELECT Gender, COUNT(user_id) AS user_count_with_more_than_5_edits FROM GenderEdits GROUP BY Gender;
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...