-
Notifications
You must be signed in to change notification settings - Fork 3
Queries — Task 2
Kozlov Fedor edited this page May 16, 2015
·
3 revisions
SELECT ?proc ?editor_name WHERE {
VALUES ?proc {
<http://ceur-ws.org/Vol-1085/>
<http://ceur-ws.org/Vol-1010/>
<http://ceur-ws.org/Vol-1008/>
<http://ceur-ws.org/Vol-981/>
<http://ceur-ws.org/Vol-906/>
<http://ceur-ws.org/Vol-859/>
<http://ceur-ws.org/Vol-784/>
<http://ceur-ws.org/Vol-540/>
<http://ceur-ws.org/Vol-369/>
<http://ceur-ws.org/Vol-232/>
<http://ceur-ws.org/Vol-225/>
<http://ceur-ws.org/Vol-44/>
<http://ceur-ws.org/Vol-11/>
<http://ceur-ws.org/Vol-1/>
}
?proc swrc:editor ?editor .
?editor foaf:name ?editor_name .
}
SELECT ?proc (count(?pub) AS ?paper_count) {
VALUES ?proc {
<http://ceur-ws.org/Vol-1/>
<http://ceur-ws.org/Vol-11/>
<http://ceur-ws.org/Vol-44/>
<http://ceur-ws.org/Vol-49/>
<http://ceur-ws.org/Vol-104/>
<http://ceur-ws.org/Vol-232/>
<http://ceur-ws.org/Vol-304/>
<http://ceur-ws.org/Vol-353/>
<http://ceur-ws.org/Vol-538/>
<http://ceur-ws.org/Vol-658/>
<http://ceur-ws.org/Vol-721/>
<http://ceur-ws.org/Vol-958/>
<http://ceur-ws.org/Vol-979/>
<http://ceur-ws.org/Vol-994/>
<http://ceur-ws.org/Vol-1008/>
<http://ceur-ws.org/Vol-1123/>
}
?pub dcterms:partOf ?proc .
}
GROUP BY ?proc
SELECT DISTINCT ?proc ?creator_name WHERE {
VALUES ?proc {
<http://ceur-ws.org/Vol-1085/>
<http://ceur-ws.org/Vol-1044/>
<http://ceur-ws.org/Vol-994/>
<http://ceur-ws.org/Vol-919/>
<http://ceur-ws.org/Vol-902/>
<http://ceur-ws.org/Vol-778/>
<http://ceur-ws.org/Vol-571/>
<http://ceur-ws.org/Vol-232/>
} .
?pub dcterms:partOf ?proc ;
dc:creator ?creator .
?creator foaf:name ?creator_name .
}