Я хочу предложить вам два подхода:
Используйте эти переменные, чтобы выбрать правильный узел и определить множитель
DECLARE @AttributeName VARCHAR(100)=N'medical';
DECLARE @Multiply INT=2;
UPDATE YourTable
SET YourXML.modify(N'replace value of (/CtcConfiguration
/SalaryComponent
/SalaryComponentConfiguration[(Name/text())[1]=sql:variable("@AttributeName")]
/DisplayOrder/text())[1]
with xs:int((/CtcConfiguration
/SalaryComponent
/SalaryComponentConfiguration[(Name/text())[1]=sql:variable("@AttributeName")]
/DisplayOrder/text())[1]) * sql:variable("@Multiply")');
- В качестве альтернативы вы можете использовать обновляемый CTE:
- в этом случае вы используете sql:column()
вместо sql:variable()
SET @AttributeName=N'Basic';
WITH cte AS
(
SELECT *
--you can place any multiplier here
,10 * YourXML.value(N'(/CtcConfiguration
/SalaryComponent
/SalaryComponentConfiguration[(Name/text())[1]=sql:variable("@AttributeName")]
/DisplayOrder/text())[1] ',N'int') AS NewValue
FROM YourTable
)
UPDATE cte
SET YourXML.modify(N'replace value of (/CtcConfiguration
/SalaryComponent
/SalaryComponentConfiguration[(Name/text())[1]=sql:variable("@AttributeName")]
/DisplayOrder/text())[1]
with sql:column("NewValue")');