0

我有这个 XML:

<List>
    <Attribute>
        <Id>NAME</Id>
        <Value>JOHN</Value>
    </Attribute>
    <Attribute>
        <Id>CITY</Id>
        <Value>NEW YORK</Value>
    </Attribute>
</List>

下面是查询:

SELECT EXTRACTVALUE(xml, "List/Attribute[Id[text()='NAME']]/Value")
FROM xx;

但是得到错误

'字段列表'中的未知列'List/Attribute[Id[text()='NAME']]/Value'。

我想检索应该返回为 JOHN 的 NAME 的值

4

0 回答 0