私はテーブルを持っています:
MyTable
config as XML
title as varchar(255)
MyTable.config には、次の構造の XML があります。
<configuration pagetitle="myConfig">
<column>
<row>
<component id="1" type="MyPiece" title="My Title" text="junk" />
</row>
</column>
</configuration>
構成 XML のコンポーネント ノードのテキスト属性に MyTable.text の値を挿入するスクリプトが必要です。
私はこれが間違っていることを知っていますが、似たようなことをしたい:
UPDATE MyTable SET config.configuration.column.row.component.title = title