query-2f325a8051a214077ec8eeb25d3f1566
What I want in addition is columns which show the number of male and female lyricists. I can do this for one songbook:
Use at
- https://query.wikidata.org/sparql
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 ?genderLabel (COUNT(?song) AS ?songs)
WHERE
{
?song wdt:P1433 wd:Q1381294.
?song wdt:P676 ?lyricist.
?lyricist wdt:P21 ?gender.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?genderLabel
ORDER BY DESC(?songs)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?gender")
v3("?lyricist")
v2("?song"):::projected
v5("?songs")
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q1381294"]):::iri
v2 --"wdt:P1433"--> c2
v2 --"wdt:P676"--> v3
v3 --"wdt:P21"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind1[/"count(?song)"/]
v2 --o bind1
bind1 --as--o v5