2
  • Delicious
  • Facebook
  • Reddit
  • StumbleUpon
  • Twitter
  • RSS Feed

List 10 books including authors

Posted on the March 17th, 2011 under sparql by s3space

.

SPARQL Query: PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbpedia: <http://dbpedia.org/resource/> PREFIX ontology: <http://dbpedia.org/ontology/> select distinct ?s ?author where { ?s rdf:type ontology:Book; ontology:author ?author . }limit 10

Query Result::
————————————————————————————————————————– | s | author | ========================================================================================================================== | <http://dbpedia.org/resource/Victims_of_Yalta> | <http://dbpedia.org/resource/Nikolai_Tolstoy> | | <http://dbpedia.org/resource/The_Tales_of_Ise> | <http://dbpedia.org/resource/Anonymity> | | <http://dbpedia.org/resource/Tractatus_Logico-Philosophicus> | <http://dbpedia.org/resource/Ludwig_Wittgenstein> | | <http://dbpedia.org/resource/Philosophical_Investigations> | <http://dbpedia.org/resource/Ludwig_Wittgenstein> | | <http://dbpedia.org/resource/The_Pit_and_the_Pendulum> | <http://dbpedia.org/resource/Edgar_Allan_Poe> | | <http://dbpedia.org/resource/A_Descent_into_the_Maelstr%C3%B6m> | <http://dbpedia.org/resource/Edgar_Allan_Poe> | | <http://dbpedia.org/resource/The_Facts_in_the_Case_of_M._Valdemar> | <http://dbpedia.org/resource/Edgar_Allan_Poe> | | <http://dbpedia.org/resource/The_Masque_of_the_Red_Death> | <http://dbpedia.org/resource/Edgar_Allan_Poe> | | <http://dbpedia.org/resource/The_Purloined_Letter> | <http://dbpedia.org/resource/Edgar_Allan_Poe> | | <http://dbpedia.org/resource/The_Fall_of_the_House_of_Usher> | <http://dbpedia.org/resource/Edgar_Allan_Poe> | ————————————————————————————————————————–

Leave a Reply

You must be logged in to post a comment.