query-6c30aea99f141380ec7a7678521309b1
Humans that have a description in Romanian beginning with an uppercase letter SELECT DISTINCT ?item ?itemdesc WHERE { ?item wdt:P31 wd:Q5. ?item schema:description ?itemdesc. let ( ?firstletter := SUBSTR(str(?itemdesc),1,1) ). FILTER((LANG(?itemdesc)) = "ro"). FILTER(lcase(?firstletter) != ?firstletter) } LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
# Humans that have a description in Romanian beginning with an uppercase letter
SELECT DISTINCT ?item ?itemdesc WHERE {
?item wdt:P31 wd:Q5.
?item schema:description ?itemdesc.
let ( ?firstletter := SUBSTR(str(?itemdesc),1,1) ).
FILTER((LANG(?itemdesc)) = "ro").
FILTER(lcase(?firstletter) != ?firstletter)
}
LIMIT 100