Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PREFIX ocd: <http://dati.camera.it/ocd/>
- PREFIX osr: <http://dati.senato.it/osr/>
- PREFIX foaf: <http://xmlns.com/foaf/0.1/>
- SELECT DISTINCT ?commissione ?dizioneCommissione ?senatore ?nome ?cognome ?carica ?inizioAfferenza ?fineAfferenza
- WHERE
- {
- ?commissione osr:titolo ?dizioneCommissione.
- ?afferenza osr:commissione <http://dati.senato.it/commissione/0-1>.
- ?afferenza a osr:Afferenza.
- ?afferenza osr:inizio ?inizioAfferenza
- OPTIONAL { ?afferenza osr:fine ?fineAfferenza }
- ?afferenza osr:carica ?carica.
- ?senatore osr:afferisce ?afferenza.
- ?senatore a osr:Senatore.
- ?senatore foaf:firstName ?nome.
- ?senatore foaf:lastName ?cognome.
- FILTER (?commissione = <http://dati.senato.it/commissione/0-1> )
- FILTER ( (?inizioAfferenza < xsd:dateTime(STR("2009-06-01"))) && ((!BOUND(?fineAfferenza)) || ?fineAfferenza > xsd:dateTime(STR("2009-06-01"))) ) .
- }
- GROUP BY ?senatore
- ORDER BY ?cognome ?nome
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement