query-60963108b8f41b0d6e3a00a331da61c8

rq turtle/ttl

Check OBINs 1000 at a time

ODNB entries by OBIN, ordered, by 1000

SELECT * WHERE { ?ODNBpeople012 wdt:P1415 ?OBIN FILTER(STRSTARTS(?OBIN, '101012')) . } ORDER BY ASC(?OBIN)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#Check OBINs 1000 at a time
#ODNB entries by OBIN, ordered, by 1000
SELECT *
WHERE
{ ?ODNBpeople012 wdt:P1415 ?OBIN
FILTER(STRSTARTS(?OBIN, '101012')) .
}
ORDER BY ASC(?OBIN)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?OBIN"):::projected v2("?ODNBpeople012"):::projected f0[["starts-with(?OBIN,'101012')"]] f0 --> v1 v2 --"wdt:P1415"--> v1