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

SQL

AخA
 
select
  count(*) as pages,
  redirect_counts.count as `redirect count`
from (
    select count(rd_from) as count
    from redirect
    where rd_namespace = 0
    group by rd_namespace, rd_title
) redirect_counts
group by redirect_counts.count
order by pages desc;
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...