mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 09:57:39 +01:00
7 lines
292 B
Plaintext
7 lines
292 B
Plaintext
<examen> {
|
|
for $alumno in doc('ejercicio-planilla-correccion-examen.xml')/correccionExamen/resultadosPorAlumno/alumno
|
|
let $nombreAlumno := $alumno/@nombre
|
|
where starts-with($nombreAlumno, 'Cal')
|
|
order by $nombreAlumno descending
|
|
return <alumno>{ data($nombreAlumno) }</alumno>
|
|
} </examen> |