Return XML 数据库中的所有文档
Return all Documents in XML DataBase
在关系数据库中,我们可以像这样查询所有表:
select table_name from all_all_tables ;
或
select tname from tab;
如何使用 XQuery/XPath 从 Sedna XML 数据库中 return 所有 xml 文件,就像我们在关系数据库中查询表一样?
如果我可以使用函数,我在哪里可以找到内置 XML 函数的文档。
根据 http://www.sedna.org/progguide/ProgGuidesu8.html#x14-580002.5.6 听起来好像 $documents
给你 "all stand-alone documents, collections and in-collection documents"。
在关系数据库中,我们可以像这样查询所有表:
select table_name from all_all_tables ;
或
select tname from tab;
如何使用 XQuery/XPath 从 Sedna XML 数据库中 return 所有 xml 文件,就像我们在关系数据库中查询表一样?
如果我可以使用函数,我在哪里可以找到内置 XML 函数的文档。
根据 http://www.sedna.org/progguide/ProgGuidesu8.html#x14-580002.5.6 听起来好像 $documents
给你 "all stand-alone documents, collections and in-collection documents"。