sql Select into XML

Use slickcms
Select
	Posts.PostID,
	Posts.Title,
	Posts.UserID,
	Users.Name
From Posts
Inner Join Users On Users.UserID = Posts.UserID
For XML Auto, Elements

--returns XML in differing format (1 element per record)
--For XML Auto
Selects data in an XML format.

Updated: Thursday 14th October 2010, 22:53am

There are 0 comments

Leave a comment of your own

Comments are currently closed.