This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
TP-BDD2/xpath/ex4.xq
2022-03-29 17:16:02 +02:00

13 lines
388 B
Plaintext

(:
1 //COUREUR[@id = //COURSE[@nom = "ParisRoubaix"]/PODIUM/COUREUR[2]/@id ]/text()
2 //COUREUR[@id = //COURSE/PODIUM[@annee = "2011"]/COUREUR/@id and @id = //COURSE/PODIUM[@annee = "2012"]/COUREUR/@id]/text()
3 //COURSE[@nom = "ParisRoubaix"]/PODIUM[COUREUR/@id = //COUREURS/COUREUR[@nat = "I"]/@id]/@annee
4 //COUREURS/COUREUR[@nat = "I" and @id = //PODIUM/COUREUR/@id]/text()
:)