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
Ragesoss
.
This is the SQL equivalent of the bytes_added metric from Wikimetrics. Thanks to halfak for composing it!
Toggle Highlighting
SQL
SELECT anon_1.rev_user AS anon_1_rev_user, sum(anon_1.byte_change) AS net_sum, sum(abs(anon_1.byte_change)) AS absolute_sum, sum(CASE WHEN (anon_1.byte_change > 0) THEN anon_1.byte_change ELSE 0 END ) AS positive_only_sum, sum(CASE WHEN (anon_1.byte_change < 0) THEN anon_1.byte_change ELSE 0 END ) AS negative_only_sum FROM (SELECT enwiki_p.revision_userindex.rev_user AS rev_user, ( cast(revision_userindex.rev_len as signed) - cast(coalesce(anon_2.rev_len, 0) as signed) ) AS byte_change FROM enwiki_p.revision INNER JOIN page ON page.page_id = revision_userindex.rev_page LEFT OUTER JOIN (SELECT revision_userindex.rev_id AS rev_id, revision_userindex.rev_len AS rev_len FROM enwiki_p.revision_userindex ) AS anon_2 ON revision.rev_parent_id = anon_2.rev_id WHERE page.page_namespace IN ('0') AND revision_userindex.rev_user IN (319203) AND revision_userindex.rev_timestamp BETWEEN '2014-06-18' AND '2014-07-18' ) AS anon_1 GROUP BY anon_1.rev_user
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...