开发者

Add an attribute to the root element

开发者 https://www.devze.com 2023-02-13 13:34 出处:网络
How can I add attribute to the root element of any XML documents which is a column in a table called book

How can I add attribute to the root element of any XML documents which is a column in a table called book

this table contains bookid int
                    title  varchar(10)
                    Author varchar(10)
                    Order XML

order is an xml object in that table and it contains the folllowing

<buyOrder ordernum="10">
  <date>2010-12-3</date>
  <开发者_Go百科shippingdate>2010-12-5</shippingdate>
  <delivery>2010-12-12</delivery>
</buyOrder>

I want to add attribute called cost to the root element ?

How can I do that please?


declare @Cost money = 10  

update book set
  [Order].modify('insert attribute cost {sql:variable("@Cost")} into (buyOrder[1])')
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号