SPARQL examples: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 121: | Line 121: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[https://wikihum.lab.dariah.pl/wdqs/#%23Miejscowo%C5%9Bci%20kt%C3%B3re%20w%20XVI%20wieku%20by%C5%82y%20w%C5%82asno%C5%9Bci%C4%85%20monarsz%C4%85%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP134%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20wd%3AQ64.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!] | [https://wikihum.lab.dariah.pl/wdqs/#%23Miejscowo%C5%9Bci%20kt%C3%B3re%20w%20XVI%20wieku%20by%C5%82y%20w%C5%82asno%C5%9Bci%C4%85%20monarsz%C4%85%0ASELECT%20%3Fitem%20%3FitemLabel%20%3Fahp_id%20%3Fcoordinate%0A%20%20WHERE%0A%20%20%7B%0A%20%20%20%20%20%20%3Fitem%20wdt%3AP81%20%3Fahp_id%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP63%20%3Fstatement%20.%0A%20%20%20%20%20%20%3Fitem%20p%3AP134%20%3Fstatement1.%0A%20%20%20%20%20%20%3Fstatement%20pq%3AP40%20%3Fpointintime%20.%0A%20%20%20%20%20%20%3Fstatement1%20pq%3AP40%20%3Fpointintime1%20.%0A%20%20%20%20%20%20%3Fstatement%20ps%3AP63%20%3Fcoordinate%20.%0A%20%20%20%20%20%20%3Fstatement1%20%28ps%3AP134%2F%28wdt%3AP56%2a%29%29%20wd%3AQ64.%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime%29%20%3D%201600%29%0A%20%20%20%20%20%20FILTER%28YEAR%28%3Fpointintime1%29%20%3D%201600%29%0A%20%20%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22%5BAUTO_LANGUAGE%5D%2Cen%22.%20%7D%0A%20%20%7D Try It!] | ||
=== Podsumowanie liczby osób urodzonych w poszczególnych stuleciach === | |||
<syntaxhighlight lang="SPARQL" class="mw-highlight-lang-sparql"> | |||
SELECT ?century (COUNT(*) AS ?count) | |||
WHERE { | |||
?person wdt:P27 wd:Q5; | |||
wdt:P11 ?birthDate . | |||
# Obliczenie stulecia na podstawie roku urodzenia | |||
BIND(CEIL((YEAR(?birthDate) - 1) / 100) AS ?century) | |||
# odfiltrowanie błędnych danych | |||
FILTER(?century >= 10 && ?century < 22) | |||
} | |||
GROUP BY ?century | |||
ORDER BY ?century | |||
</syntaxhighlight> | |||
[https://wikihum.lab.dariah.pl/wdqs/#SELECT%20%3Fcentury%20%28COUNT%28%2a%29%20AS%20%3Fcount%29%0AWHERE%20%7B%0A%20%20%3Fperson%20wdt%3AP27%20wd%3AQ5%3B%0A%20%20%20%20%20%20%20%20%20%20wdt%3AP11%20%3FbirthDate%20.%0A%0A%20%20%23%20Obliczenie%20stulecia%20na%20podstawie%20roku%20urodzenia%0A%20%20BIND%28CEIL%28%28YEAR%28%3FbirthDate%29%20-%201%29%20%2F%20100%29%20AS%20%3Fcentury%29%0A%20%20%23%20odfiltrowanie%20b%C5%82%C4%99dnych%20danych%20%0A%20%20FILTER%28%3Fcentury%20%3E%3D%2010%20%26%26%20%3Fcentury%20%3C%2022%29%0A%7D%0AGROUP%20BY%20%3Fcentury%0AORDER%20BY%20%3Fcentury Try It!] |
Revision as of 10:35, 21 August 2024
This page is parsed by the web interface of the query service to fill the query example dialog.
Miejscowości z AHP (XVI w.) w których znajdowała się karczma
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?statement pq:P40 ?pointintime .
?statement ps:P63 ?coordinate .
?item p:P77 ?statement1.
?statement1 (ps:P77/(wdt:P56*)) wd:Q68.
FILTER(YEAR(?pointintime) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Osoby urodzone w XVI wieku
# lista osób urodzonych w XVI wieku
SELECT DISTINCT ?human ?humanLabel (YEAR(?date_of_birth) AS ?year) WHERE {
?human wdt:P27 wd:Q5.
?human wdt:P11 ?date_of_birth.
FILTER (YEAR(?date_of_birth) > 1500 && YEAR(?date_of_birth) < 1601)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?date_of_birth
Lista osób długowiecznych
# osoby ze znaną datą urodzin i śmierci żyjące pow. 90 lat
SELECT ?item ?itemLabel ?age
WHERE {
?item wdt:P27 wd:Q5 .
?item p:P11/psv:P11 ?birth_date_node .
?item p:P12/psv:P12 ?death_date_node .
?birth_date_node wikibase:timeValue ?birth_date.
?death_date_node wikibase:timeValue ?death_date.
?birth_date_node wikibase:timePrecision ?birth_precision.
?death_date_node wikibase:timePrecision ?death_precision.
BIND( YEAR(?death_date) - YEAR(?birth_date) -
IF(MONTH(?death_date)<MONTH(?birth_date) ||
(MONTH(?death_date)=MONTH(?birth_date) && DAY(?death_date)<DAY(?birth_date)),1,0) AS ?age )
FILTER(?age > 90 && ?birth_precision >= 9 && ?death_precision >= 9).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?age)
Osoby żyjące w XVI wieku - urodzone, zmarłe lub aktywne w tym okresie
SELECT * WHERE
{
{
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q5.
?item wdt:P11 ?birthdate.
?item wdt:P12 ?deathdate.
FILTER(
((?birthdate >= "1501-01-01T00:00:00Z"^^xsd:dateTime) && (?birthdate <= "1600-12-31T00:00:00Z"^^xsd:dateTime))
||
((?deathdate >= "1501-01-01T00:00:00Z"^^xsd:dateTime) && (?deathdate <= "1600-12-31T00:00:00Z"^^xsd:dateTime))
)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }}
}
UNION
{
SELECT DISTINCT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q5.
?item wdt:P87 ?fluorit.
FILTER ((?fluorit >= "+1501-01-01T00:00:00Z"^^xsd:dateTime) && (?fluorit <= "+1600-01-01T00:00:00Z"^^xsd:dateTime))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }}
}
}
ORDER BY ?itemLabel
Miejscowości które w XVI wieku były miastami
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?item p:P62 ?statement1.
?statement1 pq:P40 ?pointintime .
?statement ps:P63 ?coordinate .
?statement1 (ps:P62/(wdt:P56*)) wd:Q622.
FILTER(YEAR(?pointintime) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Miejscowości które w XVI wieku były własnością monarszą
SELECT ?item ?itemLabel ?ahp_id ?coordinate
WHERE
{
?item wdt:P81 ?ahp_id .
?item p:P63 ?statement .
?item p:P134 ?statement1.
?statement pq:P40 ?pointintime .
?statement1 pq:P40 ?pointintime1 .
?statement ps:P63 ?coordinate .
?statement1 (ps:P134/(wdt:P56*)) wd:Q64. # Q64 - własność monarsza, Q63 - duchowna, Q65 - mieszczańska, Q66 - szlachecka
FILTER(YEAR(?pointintime) = 1600)
FILTER(YEAR(?pointintime1) = 1600)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Podsumowanie liczby osób urodzonych w poszczególnych stuleciach
SELECT ?century (COUNT(*) AS ?count)
WHERE {
?person wdt:P27 wd:Q5;
wdt:P11 ?birthDate .
# Obliczenie stulecia na podstawie roku urodzenia
BIND(CEIL((YEAR(?birthDate) - 1) / 100) AS ?century)
# odfiltrowanie błędnych danych
FILTER(?century >= 10 && ?century < 22)
}
GROUP BY ?century
ORDER BY ?century