xpath_short(xml, xpath) - Returns a short value that matches the xpath expression
Example:
  > SELECT xpath_short('<a><b>1</b><b>2</b></a>','sum(a/b)') FROM src LIMIT 1;
  3
