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
Cryptic
.
Number of registered users who made at least one edit in 2023, either live or normally-deleted (but not where the username has been revdeleted or suppressed). For [[WP:RAQ#Number of blocks last year]] circa 6 February 2024.
Toggle Highlighting
SQL
WITH users_with_edits(uwe_id) AS ( SELECT user_id FROM user WHERE user_editcount >= 1 ) SELECT COUNT(*) FROM users_with_edits WHERE EXISTS (SELECT 1 FROM revision_userindex JOIN actor_revision ON actor_id = rev_actor WHERE rev_timestamp LIKE '2023%' AND actor_user = uwe_id LIMIT 1) OR EXISTS (SELECT 1 FROM archive_userindex JOIN actor_archive ON actor_id = ar_actor WHERE ar_timestamp LIKE '2023%' AND actor_user = uwe_id LIMIT 1);
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...