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

SQL

AخA
 
USE tewiki_p;
SELECT actor_name వాడుకరిపేరు, count(actor_id) సృష్టించిన_పేజీల_సంఖ్య, sum(p1.page_len) మొత్తం_బైట్లు
FROM page p1, revision,actor
where p1.page_namespace=0
  and rev_page=p1.page_id
  and rev_parent_id=0
  and actor_id=rev_actor
  and page_is_redirect=0
    and rev_timestamp>=20240617000000
group by actor_name
order by count(actor_id) desc
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...