query-12f83e18beb445fb5661b788e3d1d206
title:Most frequently used titles (P1476) found on audio tracks (Q7302866)
credit: Mahir256 on Telegram
select ?label (LANG(?label) as ?lang) (count(?i) as ?is) { ?i wdt:P31/wdt:P279* wd:Q7302866; wdt:P1476 ?label . } group by ?label ?lang having(?is > 5) order by desc(?is) ?lang
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#title:Most frequently used titles (P1476) found on audio tracks (Q7302866)
#credit: Mahir256 on Telegram
select ?label (LANG(?label) as ?lang) (count(?i) as ?is) {
?i wdt:P31/wdt:P279* wd:Q7302866; wdt:P1476 ?label .
}
group by ?label ?lang
having(?is > 5)
order by desc(?is) ?lang