modify() Method (xml Data Type)

Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance

Modifies the contents of an XML document. Use this method to modify the content of an xml type variable or column. This method takes an XML DML statement to insert, update, or delete nodes from XML data. The modify() method of the xml data type can only be used in the SET clause of an UPDATE statement.

Syntax

modify (XML_DML)  

Note

To view Transact-SQL syntax for SQL Server 2014 (12.x) and earlier versions, see Previous versions documentation.

Arguments

XML_DML
Is a string in XML Data Manipulation Language (DML). The XML document is updated according to this expression.

Note

An error is returned if the modify() method is called on a null value or results in a null value.

Examples

Because the modify() method requires a string in the XML Data Manipulation Language (DML), the samples for modify() are contained in the topics that describe the XML DML statements. For these examples, see insert (XML DML), delete (XML DML) and replace value of (XML DML).

See Also

Create Instances of XML Data
xml Data Type Methods
XML Data Modification Language (XML DML)