The XMLCONCAT function creates a forest of XML elements by concatenating all the XML values passed in. For example, the following query concatenates the <given_name> and <surname> elements for each employee in the Employees table:
SELECT XMLCONCAT( XMLELEMENT( NAME given_name, GivenName ), XMLELEMENT( NAME surname, Surname ) ) AS "Employee_Name" FROM Employees; |
This query returns the following result:
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2014, SAP AG or an SAP affiliate company. - SAP Sybase SQL Anywhere 16.0 |