Following query is returning null in Mathematica.
t = "select xmlelement(\"test\",1) as test from dual"; SQLExecute[conn, t]
It should retrun 1 as result but it is returing NUll value. How can I rertive xml data stored in the database using mathematica??
select cast(xmlelement("test",1) as varchar(255)) as test from dual. $\endgroup$