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