/*查询*/
select XmlContent(表字段).value('(//被搜索字段名/text())[1]', 'nvarchar(50)')from 表名
/*修改*/
update ot set 被修改字段= XmlContent.value('(//XML里相对应字段/text())[1]', 'nvarchar(50)')
from 表名 where 条件
/*查询*/
select XmlContent(表字段).value('(//被搜索字段名/text())[1]', 'nvarchar(50)')from 表名
/*修改*/
update ot set 被修改字段= XmlContent.value('(//XML里相对应字段/text())[1]', 'nvarchar(50)')
from 表名 where 条件