SQL
AخA
USE cswiki_p;
SELECT eu_entity_id, /*sk.term_text, */en.term_text, COUNT(*) AS ct
FROM categorylinks
JOIN wbc_entity_usage
ON eu_page_id = cl_from
LEFT JOIN (SELECT * FROM wikidatawiki_p.wb_terms WHERE term_type = 'label' AND term_language = 'cs') AS cs
ON cs.term_full_entity_id = eu_entity_id
LEFT JOIN (SELECT * FROM wikidatawiki_p.wb_terms WHERE term_type = 'label' AND term_language = 'sk') AS sk
ON sk.term_full_entity_id = eu_entity_id
LEFT JOIN (SELECT * FROM wikidatawiki_p.wb_terms WHERE term_type = 'label' AND term_language = 'en') AS en
ON en.term_full_entity_id = eu_entity_id
WHERE cl_to = 'Údržba:Doplnit_štítek_na_Wikidatech'
AND eu_aspect = 'L.en'
AND cs.term_text IS NULL
GROUP BY eu_entity_id HAVING ct > 2;
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.