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

c_type.sql

The following command file creates the call_type table:

CREATE TABLE call_type
   (
   call_code               CHAR(1),
   code_descr              CHAR(30),
   PRIMARY KEY (call_code)
   );
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]