query-7745fc9c337a94a49d907f5adc210e5c

rq turtle/ttl

Campeones de formula 1 y nĂºmero de campeonatos ganados

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?piloto ?pilotoLabel (COUNT(?campeonatos_ganados) AS ?numero_campeonatos) WHERE
{
  ?campeonatos_formula1 wdt:P3450 wd:Q1968 .
  ?piloto wdt:P1346 ?campeonatos_formula1
   SERVICE wikibase:label 
      { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],es". }
}
GROUP BY ?piloto ?pilotoLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?campeonatos_formula1") v3("?campeonatos_ganados"):::projected v4("?numero_campeonatos") v2("?piloto"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q1968"]):::iri c7(["#91;AUTO_LANGUAGE#93;,es"]):::literal v1 --"wdt:P3450"--> c2 v2 --"wdt:P1346"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?campeonatos_ganados)"/] v3 --o bind1 bind1 --as--o v4