如何将 XML 结构转换为 SQL 列

发布于 2024-08-17 08:47:20 字数 592 浏览 5 评论 0原文

我正在使用 SQL Server 2005。

假设我有一个这样的文档:

<Item Type="Menu" Name="File">
    <Item Type="Selectable" Id="Open"/>
    <Item Type="Selectable" Id="Close"/>
    <Item Type="Menu" Name="Export"/>
         <Item Type="Selectable" Id="As JPEG"/>
         ....
    and so on, with N-level of menus

How can Itranslate this into a SQL table with columns:

Selectable, Level1Menu, Level2Menu, Level3Menu,

其中“打开”和“关闭”将文件设置为 level1Menu,所有设置为 NULL菜单栏, 但 JPEG 会将文件和导出设置为 level1Menu 和 level2Menu,否则为 NULL。

谢谢。

I'm working with SQL Server 2005.

Let's say I have a document like this:

<Item Type="Menu" Name="File">
    <Item Type="Selectable" Id="Open"/>
    <Item Type="Selectable" Id="Close"/>
    <Item Type="Menu" Name="Export"/>
         <Item Type="Selectable" Id="As JPEG"/>
         ....
    and so on, with N-level of menus

How can I translate this into a SQL table with columns:

Selectable, Level1Menu, Level2Menu, Level3Menu

where Open and Close would have File as level1Menu and NULL for all the Menu columns,
but As JPEG would have File and Export as level1Menu and level2Menu and NULL otherwise.

Thanks.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文