전체 목록 (총 17 건, p.2)
전체 목록 (총 17건, p.2)
예제 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 ?candidate ?label
WHERE {
    ?candidate rdf:type no:Candidate .
    ?candidate no:candidacy nec:Elec_120220309 .
    ?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 ?job ?label
WHERE {
    ?job rdf:type no:Occupation .
    ?job rdfs:label ?label .
    ?job no:relationElection nec:Elec_20170509 .
    ?job 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 ?et ?label
WHERE {
    ?et rdf:type no:ElectionType .
    ?et rdfs:label ?label .
    ?et 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 ?ed ?label
WHERE {
    nec:Elec_320180613 no:hasElectionDistrict ?ed .
    ?ed rdfs:label ?label .
    ?ed 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_120170509 .
    ?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 ?election ?label
WHERE {
    ?election rdf:type no:Election .
    ?election no:upperElection nec:Elec_20170509 .
    ?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/>

SELECT ?election ?label
WHERE {
    ?election rdf:type no:Election .
    ?election rdfs:label ?label .
    ?election no:sortOrder ?order .
} order by ?order
limit 50