Why would I ever choose to store and manipulate XML in a relational database?

后端 未结 11 2104
谎友^
谎友^ 2020-12-08 03:38

Modern RDBMS\'s have support for XML column types and functionality for dealing with XML in stored procedures. Historically I would always have mapped hierarchical data (whe

11条回答
  •  情书的邮戳
    2020-12-08 03:52

    If you don't see the need then don't change!

    Sometimes you have to persist data that does not have a known structure, or its structure is very volatile. In those cases, instead of creating a table, just save the XML into your existing table

提交回复
热议问题