Exemples SPARQL
De Dbpedia.fr.
(Différences entre les versions)
										
									m (Accent sur une majuscule)  | 
		|||
| Ligne 19 : | Ligne 19 : | ||
    FILTER (?population > 100000)  |     FILTER (?population > 100000)  | ||
  }</nowiki>  |   }</nowiki>  | ||
| + | |||
| + | == À propos de Musées ==  | ||
| + | |||
| + | * [http://fr.dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=+select+*+where+{%0D%0A+++%3Fcategorie+rdfs%3Alabel+%22%C5%92uvre+conserv%C3%A9e+au+Louvre%22%40fr+.%0D%0A+++%3Foeuvre+%3Chttp%3A%2F%2Fdbpedia.org%2Fontology%2FwikiPageWikiLink%3E+%3Fcategorie%0D%0A+}+LIMIT+1000&format=text%2Fhtml&debug=on&timeout= Quels sont les objets de la page "catégorie" "Œuvre conservée au Louvre" ?]  | ||
| + |  <nowiki>select * where {  | ||
| + |    ?categorie rdfs:label "Œuvre conservée au Louvre"@fr .  | ||
| + |    ?oeuvre <http://dbpedia.org/ontology/wikiPageWikiLink> ?categorie  | ||
| + |  } LIMIT 1000</nowiki>  | ||
| + | |||
| + | * [http://fr.dbpedia.org/sparql?default-graph-uri=http%3A%2F%2Ffr.dbpedia.org&query=select+*+where+{%0D%0A+++%3Fcategorie+rdfs%3Alabel+%22%C5%92uvre+conserv%C3%A9e+au+Louvre%22%40fr+.%0D%0A+++%3Foeuvre+%3Chttp%3A%2F%2Fdbpedia.org%2Fontology%2FwikiPageWikiLink%3E+%3Fcategorie+.%0D%0A+++%3Foeuvre+%3Fattribut+%3Fvaleur%0D%0A+}+LIMIT+10000&format=text%2Fhtml&debug=on&timeout= Quelles sont les propriétés de ces oeuvres ?]  | ||
| + |  <nowiki>select * where {  | ||
| + |    ?categorie rdfs:label "Œuvre conservée au Louvre"@fr .  | ||
| + |    ?oeuvre <http://dbpedia.org/ontology/wikiPageWikiLink> ?categorie .  | ||
| + |    ?oeuvre ?attribut ?valeur  | ||
| + |  } LIMIT 10000</nowiki>  | ||
Version du 8 juin 2012 à 15:43
À propos de villes
select * where {<http://fr.dbpedia.org/resource/Paris> ?r ?p}
prefix db-owl: <http://dbpedia.org/ontology/>
 select * where {
    ?ville db-owl:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> . 
    ?ville rdf:type db-owl:Settlement
 }
prefix db-owl: <http://dbpedia.org/ontology/>
 select * where {
   ?ville db-owl:region <http://fr.dbpedia.org/resource/%C3%8Ele-de-France> . 
   ?ville rdf:type db-owl:Settlement .
   ?ville db-owl:populationTotal ?population .
   FILTER (?population > 100000)
 }
À propos de Musées
select * where {
   ?categorie rdfs:label "Œuvre conservée au Louvre"@fr .
   ?oeuvre <http://dbpedia.org/ontology/wikiPageWikiLink> ?categorie
 } LIMIT 1000
select * where {
   ?categorie rdfs:label "Œuvre conservée au Louvre"@fr .
   ?oeuvre <http://dbpedia.org/ontology/wikiPageWikiLink> ?categorie .
   ?oeuvre ?attribut ?valeur
 } LIMIT 10000
										
										
										
				
