Advertisement
Guest User

incarichi-senatore-gruppi

a guest
Dec 4th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.74 KB | None | 0 0
  1. PREFIX osr: <http://dati.senato.it/osr/>
  2. PREFIX ocd: <http://dati.camera.it/ocd/>
  3. PREFIX foaf: <http://xmlns.com/foaf/0.1/>
  4.  
  5. SELECT DISTINCT ?nome ?cognome ?carica ?gruppo ?dizioneGruppo ?inizioAdesione ?fineAdesione
  6. WHERE
  7. {
  8.     <http://dati.senato.it/senatore/12836> a osr:Senatore.
  9.     <http://dati.senato.it/senatore/12836> foaf:firstName ?nome.
  10.     <http://dati.senato.it/senatore/12836> foaf:lastName ?cognome.
  11.     <http://dati.senato.it/senatore/12836> ocd:aderisce ?adesione.
  12.     ?adesione osr:carica ?carica.
  13.     ?adesione osr:gruppo ?gruppo.
  14.     ?adesione osr:inizio ?inizioAdesione.
  15.     OPTIONAL { ?adesione osr:fine ?fineAdesione }
  16.     ?gruppo a ocd:gruppoParlamentare.
  17.     ?gruppo osr:titolo ?dizioneGruppo
  18. } ORDER BY ?inizioAdesione
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement