SQL
AخA
SELECT
t.page_title AS "Šablon",
COUNT(*) AS "BrojTranskluzija"
FROM page AS t
JOIN templatelinks AS tl ON tl.tl_target_id = t.page_id
JOIN page AS p ON p.page_id = tl.tl_from
WHERE t.page_namespace = 10
GROUP BY t.page_title
ORDER BY BrojTranskluzija 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.