Start of change

Suppliers table (SUPPLIERS)

The suppliers table identifies every supplier and lists basic supplier information.

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

CREATE TABLE SUPPLIERS
           ( SID         VARCHAR(10) NOT NULL, 
             ADDR        XML, 
             PRIMARY KEY (SID) )
End of change