Add xquery for futbol assignment.
This commit is contained in:
parent
06a889ed62
commit
161dae282e
29
1/LMSGI/T8-XQUERY-futbol/futbol.xqy
Normal file
29
1/LMSGI/T8-XQUERY-futbol/futbol.xqy
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th colspan="4" >Temporada:
|
||||||
|
{
|
||||||
|
doc("futbol1.xml")/marcador/competicion[id="1"]/temporada
|
||||||
|
}
|
||||||
|
-
|
||||||
|
Jornada:
|
||||||
|
{
|
||||||
|
doc("futbol1.xml")/marcador/competicion[id="1"]/jornada/id
|
||||||
|
}
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
{
|
||||||
|
for $event in doc("futbol1.xml")/marcador/competicion[id="1"]/grupos/grupo[id="1"]/eventos/evento
|
||||||
|
return
|
||||||
|
<tr>
|
||||||
|
<td>{ string($event/id) }</td>
|
||||||
|
<td>{ string($event/equipolocal) } - { string($event/equipovisitante) }</td>
|
||||||
|
<td>{ string($event/resultadolocal) }</td>
|
||||||
|
<td>{ string($event/resultadovisitante) }</td>
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user