How to express in XQuery...

Given the following xml document

<users>
	<name>Mike Jones</name>
	<name>Jon Stue</name>
<users>

How would one generate the following xml document

<users>
	Mike Jones<br/>
	Jon Stue<br/>
<users>

I can't quite figure out how to express the text of the name and the 
<br/> element as part of a return expression.
Here's what I have:

<users>
	for $user in document("...")//users
	return { $user/name/text() }<br/>
<users>

But the expression in the return is not a valid expression, according 
to the Microsoft prototype.

In addition how would one tack a processing instruction on the front. 
The following is also not a valid xquery expression.

<?some-pi?>
<users>
	for $user in document("...")//users
	return { $user/name/text() }<br/>
<users>

Thanks,
Michael-

Received on Tuesday, 11 February 2003 14:30:12 UTC