Skip to content

Instantly share code, notes, and snippets.

@adamwight
Created December 20, 2016 17:16
Show Gist options
  • Save adamwight/143df080993f654eae5f3fa8786d1857 to your computer and use it in GitHub Desktop.
Save adamwight/143df080993f654eae5f3fa8786d1857 to your computer and use it in GitHub Desktop.
create table awight_meta_edit_counts
select
u.username,
left(r.rev_timestamp, 6),
count(*)
from metawiki.revision r
join awight_meta_wmf_accounts u
on r.rev_user_text=u.username
group by 1,2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment