query-e9016f98d76dc255b868da912f9910f6

rq turtle/ttl

Countries by descending population with images of their flags SELECT ?country ?countryLabel ?flagImage ?population WHERE { ?country wdt:P31 wd:Q6256; wdt:P1082 ?population; wdt:P163 [ wdt:P18 ?flagImage ]. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC(?population)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Countries by descending population with images of their flags
SELECT ?country ?countryLabel ?flagImage ?population
WHERE {
    ?country wdt:P31 wd:Q6256;
             wdt:P1082 ?population;
             wdt:P163 [ wdt:P18 ?flagImage ].
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?population)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?country"):::projected v3("?flagImage"):::projected v1("?population"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q6256"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P1082"--> v1 a1 --"wdt:P18"--> v3 v2 --"wdt:P163"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end