Fork of Articles by lint errors except for Obsolete HTML tags by Galobtter
This query is marked as a draft This query has been published by Rchard2scout.

SQL

AخA
 
select CONCAT('{{la4|', page_title, '}}')  as page_title
, count(*) as page_count
, sum(case when linter_params like '%"name":"center"%' then 1 end) as tag_center
, sum(case when linter_params like '%"name":"small"%' then 1 end) as tag_small
, sum(case when linter_params like '%"name":"span"%' then 1 end) as tag_span
, sum(case when linter_params like '%"name":"div"%' then 1 end) as tag_div
, sum(case when linter_params like '%"name":"b"%' then 1 end) as tag_b
, sum(case when linter_params like '%"name":"i"%' then 1 end) as tag_i
, sum(case when linter_params like '%"name":"s"%' then 1 end) as tag_s
from linter
join page on page.page_id = linter.linter_page
where page.page_namespace=0 and linter_cat != 2 and linter_cat != 13
group by page.page_id
order by count(*) desc, page_title asc
limit 1000;
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...