如何在 PL/SQL 过程 ORACLE 中使用 XPATH 读取 XML 中的属性值?

发布于 2024-10-17 11:02:38 字数 924 浏览 3 评论 0原文

我有一个如下所示的 xml:

<!-- XML-Code -->
indoc := '
<Students>
     <Student Enrolled = "true">
           <SID>12456</SID>
    </Student>
    <Student Enrolled = "false">
           <SID>12345</SID>
    </Student>
</Students>';
<!-- XML Code -->
indomdoc := dbms_xmldom.newDomDocument(indoc);

我正在使用

dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(indomdoc),
                                        '//Student[@Enrolled="True"]');

This 返回我属性 Enrolled 为 true 的学生值。

我再次用来

dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(indomdoc),
                                        '//Student[@Enrolled="False"]');

获取所有尚未注册的学生。

但我想知道是否有任何方法可以使用 xsl 处理器查找已注册属性的值,而不是直接给出 @Enrolled="True"@Enrolled="False".

I have an xml like the following:

<!-- XML-Code -->
indoc := '
<Students>
     <Student Enrolled = "true">
           <SID>12456</SID>
    </Student>
    <Student Enrolled = "false">
           <SID>12345</SID>
    </Student>
</Students>';
<!-- XML Code -->
indomdoc := dbms_xmldom.newDomDocument(indoc);

I am using

dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(indomdoc),
                                        '//Student[@Enrolled="True"]');

This is returning me the values Of Students with attribute Enrolled as true.

and again I am using

dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(indomdoc),
                                        '//Student[@Enrolled="False"]');

to get all students who are not enrolled yet.

But I want to know is there any way to find the value of enrolled attribute using xsl processor, rather than directly giving like @Enrolled="True" and @Enrolled="False".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吃素的狼 2024-10-24 11:02:38

XPath 表达式 //Student/@Enrolled 将为您提供 Enrolled 属性的所有值。

XPath expression //Student/@Enrolled will give you all the values of the Enrolled attribute.

尤怨 2024-10-24 11:02:38

使用引用属性值的 XPath 表达式怎么样?

fn:data(//Student/@Enrolled)

我是否遗漏了你问题的某些部分?

How about using an XPath expression referencing the attribute value?

fn:data(//Student/@Enrolled)

Am I missing some part of your problem?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文