This statement creates a table with an XML type column, customerXML:
CREATE TABLE customer ( customerID INTEGER, customerName VARCHAR(256), customerXML XML ) PRIMARY INDEX (customerID);