XMLTYPE
in Oracle
XMLTYPE
is
a data type in oracle. Oracle has made this data type for storing the XML
message, this data type is made up of CLOB which can store XML data.
Let us check how to use XMLTYPE.
1)
Creating table column using XMLTYPE
CREATE TABLE XMLTEST2
(ID NUMBER,
XMLDATA XMLTYPE,
);