File: Query.xquery
{for $i in (1 to 5, 7, 8) return
{ for $a in (1 to ($i - 2)) return{$a} }
}
Output:
1
1
2
1
2
3
1
2
3
4
5
1
2
3
4
5
6