query-238013c6d6e623a35aacdc6c38c11185

rq turtle/ttl

Películas que han ganado al menos cinco Premios Óscar con el año en el que se lo concedieron

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?pelicula ?peliculaLabel
     (COUNT(?premio_oscar) AS ?numero_oscar)
     (SAMPLE(YEAR(?fecha)) as ?fecha_oscar)
WHERE {
     ?premio_oscar wdt:P31 wd:Q19020 .
     ?pelicula wdt:P31 wd:Q11424 ;
          p:P166 ?statement .
     ?statement ps:P166 ?premio_oscar ;
          pq:P585 ?fecha .
     SERVICE wikibase:label {bd:serviceParam 
          wikibase:language "es,en". }
}
GROUP BY ?pelicula ?peliculaLabel
HAVING(COUNT(?premio_oscar)>=5)
ORDER BY DESC(?numero_oscar) ?fecha_oscar

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v7("?_anon_42b5416610844a34809f33a099ae9de125440") v6("?fecha"):::projected v8("?fecha_oscar") v8("?numero_oscar") v4("?pelicula"):::projected v3("?premio_oscar"):::projected v5("?statement") a1((" ")) c3(["wd:Q19020"]):::iri c9(["bd:serviceParam"]):::iri c11(["es,en"]):::literal c4(["wd:Q11424"]):::iri f0[[" >= '5^^xsd:integer'"]] f0 --> a1 v3 --"p:direct/P31"--> c3 v4 --"p:direct/P31"--> c4 v4 --"p:P166"--> v5 v5 --"p:statement/P166"--> v3 v5 --"p:qualifier/P585"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end bind4[/"count(?premio_oscar)"/] v3 --o bind4 bind4 --as--o v7 bind5[/"count(?premio_oscar)"/] v3 --o bind5 bind5 --as--o v8 bind6[/"sample(year-from-dateTime(?fecha))"/] v6 --o bind6 bind6 --as--o v8