Home | Previous Page | Next Page   Appendix B. Demonstration SQL > SQL Files for the Relational Database Model >

c_state

The following command file creates the state table:

CREATE TABLE state
   (
   code               CHAR(2),
   sname              CHAR(15),
   PRIMARY KEY (code) 
   );
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]