scarpacci
scarpacci

Reputation: 9194

Does MySql Have xml support like SQL Server?

Does MySql Have xml support like SQL Server? I have searched and can't seem to find anything.

In SQL-Server I can use FOR XML to build xml output from my queries.
Is a similar method available in MySQL 5.1?

Upvotes: 2

Views: 2384

Answers (1)

Puspendu Banerjee
Puspendu Banerjee

Reputation: 2651

To some extent, but not like MSSQL. See http://dev.mysql.com/doc/refman/5.1/en/xml-functions.html

Upvotes: 2

Related Questions