Customer table (CUSTOMER)

The customer table identifies every customer by a customer ID and lists basic customer information.

The customer table is created with the following CREATE TABLE statement:

CREATE TABLE CUSTOMER
           ( CID         BIGINT NOT NULL, 
             INFO        XML, 
             HISTORY     XML,
             PRIMARY KEY (CID) )