Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns true
if the xpath
expression evaluates to true
, or if a matching node in xml
is found.
xpath_boolean(xml, xpath)
xml
: A STRING expression of XML.xpath
: A STRING expression that is a well formed XPath.
An BOOLEAN.
The function raises an error if xml
or xpath
are malformed.
> SELECT xpath_boolean('<a><b>1</b></a>','a/b');
true