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

c_index.sql

The following command file creates an index on the zipcode column of the customer table:

CREATE INDEX zip_ix ON customer (zipcode);
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]