SQL
AخA
USE cswiki_p;
SELECT eu_entity_id, sk.term_text, en.term_text, COUNT(*)
FROM (SELECT * FROM wbc_entity_usage WHERE eu_aspect = 'L.en') AS eusage
JOIN (SELECT * FROM wikidatawiki_p.page WHERE page_namespace = 0) AS page
ON page_title = eu_entity_id
LEFT JOIN (SELECT * FROM wikidatawiki_p.wb_terms WHERE term_type = 'label' AND term_language = 'cs' AND term_entity_type = 'item') AS cs
ON cs.term_full_entity_id = page_title
LEFT JOIN (SELECT * FROM wikidatawiki_p.wb_terms WHERE term_type = 'label' AND term_language = 'sk' AND term_entity_type = 'item') AS sk
ON sk.term_full_entity_id = page_title
LEFT JOIN (SELECT * FROM wikidatawiki_p.wb_terms WHERE term_type = 'label' AND term_language = 'en' AND term_entity_type = 'item') AS en
ON en.term_full_entity_id = page_title
WHERE cs.term_text IS NULL
GROUP BY eu_entity_id HAVING COUNT(*) > 2;
#ORDER BY COUNT(*) DESC, IF(en.term_text IS NULL, 1, 0), epp_entity_id;
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.