query-17958e05becf67feb6ef7365ef4da3f0
List of modern trivial Dutch plant names, starting with 'S' or 's' SELECT DISTINCT ?dutchTrivialNameModern ?scientificNameModern ?scientificNameInFB ?dutchTrivialNameInFB ?plate ?plateLabel ?plateImage WHERE { wd:Q117860156 wdt:P527 ?volume. ?volume wdt:P527 ?plate. OPTIONAL{?plate wdt:P18 ?plateImage.}
?plate wdt:P1476 ?scientificNameInFB. FILTER(lang(?scientificNameInFB)='la')
?plate wdt:P1476 ?dutchTrivialNameInFB. FILTER(lang(?dutchTrivialNameInFB)='nl')
?plate wdt:P180 ?plantDecpicted.
?plantDecpicted rdfs:label ?scientificNameModern . FILTER(lang(?scientificNameModern)='la')
?plantDecpicted rdfs:label?dutchTrivialNameModern . FILTER(lang(?dutchTrivialNameModern)='nl')
FILTER (STRSTARTS(UCASE(STR(?dutchTrivialNameModern)), 'S'))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nl". }
}
ORDER BY ?dutchTrivialNameModern
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# List of modern trivial Dutch plant names, starting with 'S' or 's'
SELECT DISTINCT
?dutchTrivialNameModern ?scientificNameModern ?scientificNameInFB ?dutchTrivialNameInFB
?plate ?plateLabel ?plateImage
WHERE
{
wd:Q117860156 wdt:P527 ?volume.
?volume wdt:P527 ?plate.
OPTIONAL{?plate wdt:P18 ?plateImage.}
?plate wdt:P1476 ?scientificNameInFB. FILTER(lang(?scientificNameInFB)='la')
?plate wdt:P1476 ?dutchTrivialNameInFB. FILTER(lang(?dutchTrivialNameInFB)='nl')
?plate wdt:P180 ?plantDecpicted.
?plantDecpicted rdfs:label ?scientificNameModern . FILTER(lang(?scientificNameModern)='la')
?plantDecpicted rdfs:label?dutchTrivialNameModern . FILTER(lang(?dutchTrivialNameModern)='nl')
FILTER (STRSTARTS(UCASE(STR(?dutchTrivialNameModern)), 'S'))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nl". }
}
ORDER BY ?dutchTrivialNameModern