可以使用Oracle的extractValue函数来提取XML文档中的属性值。该函数的语法如下:
extractValue(XMLType_instance, XPath_expression)
其中,XMLType_instance是包含要提取属性值的XML文档的XMLType实例,XPath_expression是用于定位属性的XPath表达式。
例如,假设有以下XML文档:
<book>
<title lang="en">Oracle Database Programming</title>
<author>John Smith</author>
</book>
要提取title元素的lang属性值,可以使用如下SQL语句:
SELECT extractValue(XMLType('<book><title lang="en">Oracle Database Programming</title><author>John Smith</author></book>'),
'/book/title/@lang') as lang
FROM dual;
执行以上SQL语句将返回"en",即title元素的lang属性值。