EXTRACTVALUE()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
A description for this Function has not yet been added to this Documentation.
EXAMPLES
SELECT ExtractValue('<a><b>5</b></a>', '/a/b');
+-----------------------------------------+
| ExtractValue('<a><b>5</b></a>', '/a/b') |
+-----------------------------------------+
| 5 |
+-----------------------------------------+
SELECT ExtractValue('<a><b>5</b></a>', 'count(/a/b)');
+------------------------------------------------+
| ExtractValue('<a><b>5</b></a>', 'count(/a/b)') |
+------------------------------------------------+
| 1 |
+------------------------------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.