-
Notifications
You must be signed in to change notification settings - Fork 0
/
Javier_Gil.txt
42 lines (38 loc) · 902 Bytes
/
Javier_Gil.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
1)
SELECT distinct ?prop
WHERE {
?politician rdf:type <http://dbpedia.org/ontology/Politician>.
?politician ?prop ?values
} LIMIT 100
2)
SELECT distinct ?prop
WHERE {
?politican rdf:type <http://dbpedia.org/ontology/Politician>.
?politician ?prop ?values.
FILTER(?prop != rdf:type)
}
LIMIT 100
3)
SELECT distinct ?values
WHERE {
?politician rdf:type <http://dbpedia.org/ontology/Politician>.
?politician ?prop ?values.
FILTER(?prop != rdf:type)
}
LIMIT 100
4)
SELECT distinct ?prop ?values
WHERE {
?politican rdf:type <http://dbpedia.org/ontology/Politician>.
?politican ?prop ?values.
FILTER(?prop != rdf:type)
}
LIMIT 100
5)
SELECT distinct ?prop COUNT(?values)
WHERE {
?politician rdf:type <http://dbpedia.org/ontology/Politician>.
?politican ?prop ?values.
FILTER(?prop != rdf:type)
}
LIMIT 100