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

upd_table.sql

The following example updates the sports table that the c_table.sql command file created:

UPDATE sports
   SET phone = '808-555-1212'
   WHERE mfg_code = 'PARKR';
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]