This query is marked as a draft This query has been published by Krinkle.

SQL

x
 
SELECT SUM(counter) FROM (
SELECT
  COUNT(rev_id) AS counter,
 'enwiki' as dbname
FROM enwiki_p.revision_userindex
WHERE rev_user_text = 'Krinkle'
UNION ALL
SELECT
  COUNT(rev_id) AS counter,
 'nlwiki' as dbname
FROM nlwiki_p.revision_userindex
WHERE rev_user_text = 'Krinkle'
) as sub;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...