This commit is contained in:
2023-02-02 11:51:05 +01:00
parent ed8f1fb109
commit 5f45e953d5
14 changed files with 554 additions and 0 deletions

13
TD3/cours.sparqlbook Normal file
View File

@@ -0,0 +1,13 @@
prefix ex:<www.example.org>
premix rdf <...>
SELECT ?creation_date
WHERE
?ex:Film:ex:name Titanic
SELECT ?film_name
WHERE {
?ex:creation_date ?creation_date .
ex:name : ?film_name
FILTER (?creation_date > "1998-01-01"^^xsd:dateTime)
}