CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 03:41:02 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=11e53ca517aaea875860361597d70f8739e0670224ea5f1564c0cb2bf1fba440a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22ZzrSOBxTfXU77VRnc6pol0Dhstp6rtOB%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cb56e9cdc9b277-BLR
Database - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://dbpedia.org/snorql/
- //Simple SELECT
- SELECT ?subject
- WHERE {
- ?subject rdf:type <https://dbpedia.org/ontology/City>.
- } LIMIT 20
- //More attributes
- SELECT ?subject ?population
- WHERE {
- ?subject rdf:type <https://dbpedia.org/ontology/City>.
- ?subject <https://dbpedia.org/ontology/populationUrban> ?population.
- } LIMIT 20
- //FILTER
- SELECT ?subject ?population
- WHERE {
- ?subject rdf:type <https://dbpedia.org/ontology/City>.
- ?subject <https://dbpedia.org/ontology/populationUrban> ?population.
- FILTER (xsd:integer(?population) > 2000000)
- } LIMIT 20
- //Another
- SELECT *
- WHERE
- {
- ?e <https://dbpedia.org/ontology/series> <https://dbpedia.org/resource/Game_of_Thrones> .
- ?e <https://dbpedia.org/ontology/releaseDate> ?date .
- ?e <https://dbpedia.org/ontology/episodeNumber> ?number .
- ?e <https://dbpedia.org/ontology/seasonNumber> ?season . }
- ORDER BY DESC(?date)
- //And another
- SELECT *
- WHERE
- {
- ?company a <https://dbpedia.org/ontology/Organisation> .
- ?company <https://dbpedia.org/ontology/foundationPlace> <https://dbpedia.org/resource/California> .
- ?product <https://dbpedia.org/ontology/developer> ?company .
- ?product a <https://dbpedia.org/ontology/Software>
- }
- //More!!
- SELECT ?subject ?label ?released ?abstract WHERE {
- ?subject rdf:type <https://dbpedia.org/ontology/Film>.
- ?subject dbpedia2:starring <https://dbpedia.org/resource/Tom_Cruise>.
- ?subject rdfs:comment ?abstract.
- ?subject rdfs:label ?label.
- FILTER(LANG(?abstract) = "en" && LANG(?label) = "en").
- ?subject <https://dbpedia.org/ontology/releaseDate> ?released.
- FILTER(xsd:date(?released) < "2000-01-01"^^xsd:date).
- } ORDER BY ?released
- //Possible Uses?
- SELECT DISTINCT ?person {
- { ?person a dbpedia-owl:Scientist } UNION
- { ?person a dbpedia-owl:Writer } UNION
- { ?person a dbpedia-owl:Philosopher } UNION
- { ?person a <https://dbpedia.org/class/yago/AmericanAnthropologists> }
- UNION
- { ?person dct:subject <https://dbpedia.org/resource/Category:German_poets> }
- ?person dct:subject <https://dbpedia.org/resource/Category:1943_deaths> .
- }
- //Other fun uses
- PREFIX geo: <https://www.w3.org/2003/01/geo/wgs84_pos#>
- SELECT ?subject ?lat ?long WHERE {
- ?subject <https://purl.org/dc/terms/subject> <https://dbpedia.org/resource/Category:Football_venues_in_Germany>.
- ?subject geo:lat ?lat.
- ?subject geo:long ?long.
- } LIMIT 20
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ V
JavaScript | 3 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ D
JavaScript | 7 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ G
JavaScript | 18 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ B
JavaScript | 30 sec ago | 0.24 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ E
JavaScript | 41 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ O
JavaScript | 52 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ F
JavaScript | 1 min ago | 0.24 KB
-
⭐⭐⭐Make $15OO in 2O minutesV E⭐⭐
Java | 1 min ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand