SQL
AخA
USE ptwiki_p;
SELECT
CONCAT('Ficheiro:', page_title) imagem,
COUNT(*) num_de_páginas
FROM page
INNER JOIN imagelinks ON page_title = il_to
WHERE page_namespace = 6
GROUP BY page_title
ORDER BY num_de_páginas DESC
LIMIT 500;
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.