SQL
x
USE skwiki_p;
SELECT
page_title AS title,
page_len,
GROUP_CONCAT(cl_to) AS categories
FROM
page,
categorylinks
WHERE
page_namespace = 0 AND
cl_from = page_id AND
cl_to IN ('Dobré články', 'Najlepšie články')
GROUP BY
page_id
ORDER BY
page_len 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.