1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 08:38:39 +02:00
audacity/lib-src/redland/rasqal/tests/rdql/example_at_2.rdql
2010-01-24 09:19:39 +00:00

19 lines
651 B
Plaintext

SELECT ?x, ?title, ?a, ?moddate, ?createddate, ?name, ?creatormail
FROM <http://testers.mkdoc.com/dc.rdf>,
<http://testers.mkdoc.com/features/dc.rdf>,
<http://testers.mkdoc.com/cma/dc.rdf>
WHERE
(?x, dc:title, ?title),
(?x, dcq:abstract, ?a),
(?x, dcq:modified, ?m),
(?x, dcq:created, ?cd),
(?m, rdf:value, ?moddate),
(?cd, rdf:value, ?createddate),
(?x, dc:creator, ?cr),
(?cr, vcard:FN, ?name),
(?cr, vcard:EMAIL, ?creatormail)
USING dcq for <http://dublincore.org/2000/03/13/dcq#>,
rdf for <http://www.w3.org/1999/02/22-rdf-syntax-ns#>,
vcard for <http://www.w3.org/2001/vcard-rdf/3.0#>,
dc for <http://purl.org/dc/elements/1.1/>