Progress
SQL-92
Guide and Reference


Drop the Table

This section contains an SQL-92 script that drops the team table from the database.

Team_xit.sql
-- File Name: Team_xit.sql
--
-- Purpose: Drops the team table from the database.
--
-- Requirements:
--           (1) Database must be running.               
--           (2) Team table must exist -- see Team_cre.sql
--           (3) Submit this script to SQL Explorer as an input file
--               (character mode) or as a run file (GUI mode)
--           (4) To re-create the table, run Team_cre.sql
--           (5) To re-populate the table, run Team_upd.sql 
--
-- Revision History:
-- 
-- Date                Author                     Change 
-- ----               -------                     -------
-- 11/99               DB-DOC                     Created
----------------------------------------------------------------------

drop table team ;
commit work ; 


Copyright © 2004 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095