PREFIX rdfs: PREFIX type: PREFIX prop: SELECT ?country_name ?population WHERE { ?country a type:LandlockedCountries ; rdfs:label ?country_name ; prop:populationEstimate ?population . FILTER (langMatches(lang(?country_name), "EN")) . } ORDER BY DESC(?population) LIMIT 10