SQL
x
SELECT COUNT(*) AS contenttranslation_count
FROM change_tag_def
WHERE ctd_name = 'contenttranslation';
-- Check health-related categories
SELECT DISTINCT cl_to
FROM categorylinks
WHERE cl_to LIKE '%health%' OR cl_to LIKE '%medical%'
LIMIT 50;
-- Verify language links exist
SELECT COUNT(*) AS language_link_count
FROM langlinks;
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.