Fork of
List {{Rail-interchange}} 2
by Xiplus
This query is marked as a draft
This query has been published
by Xiplus.
SQL
x
SELECT COUNT(DISTINCT pl_from) AS cnt
FROM pagelinks
WHERE pl_namespace = 10 AND pl_title LIKE '港鐵顏色/count/%';
SELECT pl_title, COUNT(*) AS cnt
FROM (
SELECT LOWER(CONVERT(pl_title USING UTF8)) AS pl_title
FROM pagelinks
WHERE pl_namespace = 10 AND pl_title LIKE '港鐵顏色/count/%'
) t
GROUP BY pl_title
ORDER BY cnt 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.