query-68ca260ef7f4592a3c2feba901539994

rq turtle/ttl

سكان المدينةدعونا ننظر إلى السؤال الثاني في الوقت الحالي، من السهل كتابة طلب بحث يسرد جميع المدن جنبا إلى جنب مع سكانها وبلدها، مرتبة حسب البلد: Població de ciutatsFem un cop d'ull a la segona pregunta. És prou senzill escriure una consulta que llisti totes les ciutats amb la seva població i nació, ordenades per nació: City populations Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: City populationsLet’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: City populationsLet’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: אוכלוסיות עירוניותבואו נתמקד בשאלה שנייה כרגע. קל יחסית לכתוב שאילתה שמציגה את כל הערים לרבות האוכלוסיה והמדינה שהן נמצאות בה, תוך סידור התוצאות לפי מדינה: City populations Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: 都市の人口ここでは、2番目の質問を見てみましょう。すべての都市とその人口および国を国順にリストするクエリを作成するのは、非常に簡単です。 City populations Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: Bevolking van stedenLaten we nu eens kijken naar de tweede query. Het is vrij eenvoudig om een query te schrijven die alle steden vermeldt met hun bevolking en land, op volgorde van het land: Население города Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: City populations Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: City populations Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: City populations Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: Міське населення Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country: 城市人口 Let’s look at the second question for now. It’s fairly simple to write a query that lists all cities along with their population and country, ordered by country:

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?country ?city ?population
WHERE
{
  ?city wdt:P31/wdt:P279* wd:Q515;
        wdt:P17 ?country;
        wdt:P1082 ?population.
}
ORDER BY ?country

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?city"):::projected v1("?country"):::projected v3("?population"):::projected a1((" ")) c3(["wd:Q515"]):::iri v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P17"--> v1 v2 --"wdt:P1082"--> v3