我有以下 xml 并希望将所有记录作为行获取。我的xml如下..
<category ccode="ct8">
<columns>
<col colcode="cl_prodn" displaytext="Prodname" responsetype="textbox" tooltip="testts" isrequired="" displayorder="1" />
<col colcode="cl_descs" displaytext="Descs" responsetype="textarea" tooltip="atser" isrequired="on" displayorder="2" />
</columns>
</category>
我想要两行类别 ccode = ct8。这两行将显示所有属性。我正在尝试使用以下查询,但它只返回一个和第一个。
select CatConfig.value('(category/columns/col/@colcode)[1]', 'varchar(50)') from categories where CategoryId = 8