Advertisement
Guest User

Untitled

a guest
Nov 13th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SPARQL 0.56 KB | None | 0 0
  1. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  2. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  3. PREFIX nobel: <http://data.nobelprize.org/terms/>
  4. PREFIX dbpedia-owl: <http://dbpedia.org/ontology/>
  5. #SELECT DISTINCT ?instance ?category
  6. SELECT DISTINCT (COUNT(?instance) AS ?nr)
  7. WHERE {
  8.   ?instance a nobel:LaureateAward.
  9.   ?instance nobel:category ?category.
  10.   FILTER (
  11.     ?category NOT IN (
  12.       <http://data.nobelprize.org/resource/category/Literature>,
  13.       <http://data.nobelprize.org/resource/category/Peace>
  14.     )
  15.   )
  16. }
  17. ORDER BY ?instance
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement