SQL
AخA
use enwiki_p;
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
limit
10
) 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.