SQL
x
use itwiki_p;
select page.page_id, page.page_title, linter.linter_params, count(*) as totale from linter join page on page.page_id = linter.linter_page
where linter_cat = 4 and page_namespace = 0
group by page.page_id, page.page_title, linter.linter_params
order by totale desc
limit 1, 300;
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.