在PL/SQL中,可以使用 Oracle 的 extractValue 函數來提取 XML 數據中的值。該函數的語法如下:
extractValue(xml_xmltype, '/xpath_expresion')
其中,xml_xmltype 是包含 XML 數據的 XMLType 對象,‘/xpath_expression’ 是用于指定要提取數據的 XPath 表達式。
例如,假設有以下 XML 數據:
<employee>
<name>John Doe</name>
<department>IT</department>
<salary>5000</salary>
</employee>
可以使用 extractValue 函數來提取 name 元素的值:
DECLARE
xml_data XMLType := XMLType('<employee><name>John Doe</name><department>IT</department><salary>5000</salary></employee>');
name_value VARCHAR2(50);
BEGIN
name_value := extractValue(xml_data, '/employee/name');
DBMS_OUTPUT.PUT_LINE('The name is: ' || name_value);
END;
這將輸出:
The name is: John Doe