SQL
AخA
select foo.cl_from, page.page_id, page.page_title, page.page_len, "Start" as class from
(SELECT *
FROM categorylinks as qual
WHERE qual.cl_to LIKE '%Start%History%'
ORDER BY RAND()
) AS foo
LEFT JOIN page on foo.cl_from=page.page_id
WHERE page.page_len > 7500;
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.