Guest User

Untitled

a guest
Jan 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <Vorlesungsverzeichnis>
  2. {
  3. for $sws in distinct-values(doc('uni')//Vorlesung/SWS)
  4. order by $sws
  5. return
  6. <Vorlesungen SWS="{$sws}">
  7. {
  8. for $v in doc('uni')//Vorlesung[SWS=$sws]
  9. order by $v/Titel
  10. return <Vorlesung VorlNr="{$v/@VorlNr}" Titel="{$v/Titel}"></Vorlesung>
  11. }
  12. </Vorlesungen>
  13. }
  14. </Vorlesungsverzeichnis>
Add Comment
Please, Sign In to add comment