Skip to content

Instantly share code, notes, and snippets.

@Ironholds
Created April 12, 2014 00:32
Show Gist options
  • Select an option

  • Save Ironholds/10511927 to your computer and use it in GitHub Desktop.

Select an option

Save Ironholds/10511927 to your computer and use it in GitHub Desktop.
example query
SELECT DISTINCT(rc_user_text) AS bfuser,
user_editcount AS edits,
min(rev_timestamp) AS firstedit
FROM recentchanges INNER JOIN user ON rc_user = user_id
INNER JOIN revision ON rc_user = rev_user
WHERE rc_type IN (1,0)
AND rc_bot = 0
AND rc_user > 0
GROUP BY bfuser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment