| 예제 SPARQL | ||
|---|---|---|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT *
WHERE {
?election rdf:type no:Election .
?election no:upperElection nec:Elec_20240410 .
?election rdfs:label ?label .
?election no:sortOrder ?order .
}
order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?candidate ?label
WHERE {
?candidate rdf:type no:WinCandidate .
?candidate rdfs:label ?label .
?candidate no:occupationDetail ?occupationDetail .
?candidate no:sortOrder ?order .
filter regex(?label, "김").
filter(?occupationDetail="정당인") .
} order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?scgnRpbeExctRsn ?label ?electionDay
WHERE {
?scgnRpbeExctRsn rdf:type no:ScgnRpbeExctRsn .
?scgnRpbeExctRsn rdfs:label ?label .
?scgnRpbeExctRsn no:electionDay ?electionDay .
?scgnRpbeExctRsn no:sortOrder ?order .
?scgnRpbeExctRsn no:rsn ?rsn .
filter(?electionDay>="20220101") .
filter(?electionDay<="20241231") .
filter(?rsn="피선거권상실") .
}
order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?scgnElctExctSttn ?label
WHERE {
?scgnElctExctSttn rdf:type no:ScgnElctExctSttn .
?scgnElctExctSttn rdfs:label ?label .
?scgnElctExctSttn no:sortOrder ?order .
}
order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?candidate ?label
WHERE {
?candidate rdf:type no:ResignCandidate .
?candidate no:candidacy nec:Elec_620220601 .
?candidate rdfs:label ?label .
?candidate no:sortOrder ?order .
} order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?candidate ?label
WHERE {
?candidate rdf:type no:WinCandidate .
?candidate no:candidacy nec:Elec_620220601 .
?candidate rdfs:label ?label .
?candidate no:sortOrder ?order .
} order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?candidate ?label
WHERE {
?candidate rdf:type no:WithoutVotingElectionDistrict .
?candidate no:candidacy nec:Elec_620220601 .
?candidate rdfs:label ?label .
?candidate no:sortOrder ?order .
} order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT *
WHERE {
?election rdf:type no:Election .
?election no:upperElection nec:Elec_20220601 .
?election rdfs:label ?label .
?election no:sortOrder ?order .
}
order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT ?candidate ?label
WHERE {
?candidate rdf:type no:Candidate .
?candidate no:candidacy nec:Elec_320220601 .
?candidate rdfs:label ?label .
?candidate no:sortOrder ?order .
} order by ?order
limit 50
|
||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX no: <http://data.nec.go.kr/ontology/>
PREFIX nec: <http://data.nec.go.kr/resource/>
SELECT *
WHERE {
?election rdf:type no:Election .
?election no:upperElection nec:Elec_20220309 .
?election rdfs:label ?label .
?election no:sortOrder ?order .
}
order by ?order
limit 50
|
||