Ceci est une ancienne révision du document !
Chercher toutes les univesités
select count(*)
where{
select distinct *
where {?s dbpprop:type dbpedia:Public_university;
georss:point ?localisation}
#limit 10
}
PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
PREFIX dbpedia: <http://dbpedia.org/resource/>
PREFIX dbpprop: <http://dbpedia.org/property/>
SELECT DISTINCT *
WHERE
{ SERVICE <http://dbpedia-live.openlinksw.com/sparql>
{ ?s dbpprop:type dbpedia:Public_university .
?s dbpprop:city ?city .
?city dbpedia-owl:type dbpedia:City
}
}
LIMIT 20