SQL Server 

SQL Server supports JSON through the data type NVARCHAR(MAX)

XML: SQL Server supports the XML (Extensible Markup Language) data type. This data type allows you to store XML in a table column. XML documents contain one root that is the parent of all elements. The following is an example of XML syntax:

<books>
<book>
<name>Learn SQL Programming</name>
<author>Josephine Bush</author>

</book>
</books>

XML doesn't exist in MySQL; use the BLOB data type instead. See the String Data Types section for more information on the BLOB data type. 

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.22.27.45