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:
![]() |
Discuter à propos de cette page dans DocCommentXchange.
|
Copyright © 2013, SAP AG ou société affiliée SAP - SAP Sybase SQL Anywhere 16.0 |