Equivalent SP in MySQL for sp_xml_preparedocument of SQL Server -


I have two questions -

  1. What would be the name of the equal SP \ function in MySQL For SQL Server sp_xml_preparedocument
  2. For the OPENXML , what would be the equivalent SP function name in MySQL?

    to begin with, SQL Server Has moved itself off of SP_xml_prepared Documents and Open XML - these are procedural tasks that use handles - very unwieldy.

    In MySQL, you can use the XML function extract value and update XML

    and here is a very small identity to use them

Comments