relpipe-data/examples/rdf-heathers-quotes.sparql
author František Kučera <franta-hg@frantovo.cz>
Tue, 04 Aug 2020 00:59:32 +0200
branchv_0
changeset 313 a43265235e5a
parent 310 aeda3cb4528d
permissions -rw-r--r--
examples: Monitoring MIDI messages using JACK – relpipe-in-jack: @id for the MT-32 part

PREFIX person:     <tag:heathers.globalcode.info,2020:person:>
PREFIX predicate:  <tag:heathers.globalcode.info,2020:predicate:>
PREFIX thing:      <tag:heathers.globalcode.info,2020:thing:>

SELECT
	?firstname
	?surname
	?quote
WHERE {
	?person predicate:says ?quote .
	?person predicate:has-firstname ?firstname .
	?person predicate:has-surname ?surname .
}
ORDER BY ?firstname ?surname ?quote