SQL
x
use hewiki_p;
select concat('[[',page_title,']]'), DATE_FORMAT(max(rev_timestamp), '%d-%m-%Y')
from revision_userindex
inner join page on page_id=rev_page
where
page_namespace=0 and
page_is_redirect=0 and
rev_user not in (select ug_user from user_groups where ug_group='bot') and
rev_page not in (select pp_page from page_props where pp_propname='disambiguation')
group by rev_page order by max(rev_timestamp)
limit 500
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.
Query status: complete
Executed on Fri, 13 Oct 2017 10:27:33 UTC.