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

SQL

x
 
USE trwiki_p;
SET @KAT=replace("Vikipedi silinecek sayfalar"," ","_");
SET @us = 104002;
SELECT r.rev_user as id, r.rev_user_text as kisi, count(*) as sayi
FROM revision_userindex r join page p on p.page_id = r.rev_page 
join categorylinks c on c.cl_from = p.page_id
where c.cl_to = @KAT and r.rev_user >0
group by 1
order by 3 desc
limit 20;
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...