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
Chlod
.
Part of [[w:en:User:Chlod/Analysis/2021 Pacific typhoon season]].
Toggle Highlighting
SQL
USE enwiki_p; -- Use the English Wikipedia database. SELECT -- Add the following columns... actor_name as `Username`, -- Editor username user_registration as `Registration Date`, -- Editor registration date MAX(`rev_timestamp`) as `Last edit` FROM revision_userindex -- ... from all Wikipedia revisions JOIN actor_revision ON rev_actor = actor_id -- Grabs the actor information to get the username GROUP BY actor_name -- Squash the table based on the username WHERE rev_timestamp > 20210126000000 ORDER BY user_registration ASC -- Order by registration date (latest to oldest)
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...