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

SQL

x
 
use enwiktionary_p;
select substring(page_title
                 from if(
                   instr(page_title, "/") = 0,
                   1,
                   instr(page_title, "/") - 1)
                 for length(page_title)), count(*) from pagelinks
where pl_namespace = 106 -- Rhymes
and pl_title like 'Spanish/%'
group by pl_title
limit 10;
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...