Q1.11

From BITPlan cr Wiki
Revision as of 12:05, 19 March 2023 by Wf (talk | contribs) (Created page with "=Query= {{Query |id=11 |title=Number of Editions of workshop series |description=Determine the number of editions that the workshop series titled T has had, regardless of whe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Query

Query
edit
id  11
name  
title  Number of Editions of workshop series
description  Determine the number of editions that the workshop series titled T has had, regardless of whether published with CEUR-WS.org.
sparql  
SELECT DISTINCT ?series ?seriesLabel (Count(DISTINCT ?event2)as ?number_of_events)
WHERE{
  ?proceedings wdt:P31 wd:Q1143604;
               wdt:P179 wd:Q27230297;
               p:P179/pq:P478 ?volume_number;
               wdt:P4745 ?event.
  ?event wdt:P179 ?series.
  ?event2 wdt:P179 ?series.
  ?series rdfs:label ?seriesLabel. FILTER(lang(?seriesLabel)="en")
}
GROUP BY ?series ?seriesLabel
tryiturl  →uVEk8R
wdqsurl  →6UB4
scholia  →
relevance  
comment  
task  Task1→Task1

Freitext