home *** CD-ROM | disk | FTP | other *** search
- rem
- rem $Header: load_inv.sql,v 6.1 90/02/16 18:40:23 nsalah Exp $ load_inv.sql Copyr (c) 1989 Oracle
- rem
- delete from inventory_table
- /
- alter table inventory_table
- modify (product char(15))
- /
- insert into inventory_table values
- (1234, 'TENNIS RACQUET', 3)
- /
- insert into inventory_table values
- (8159, 'GOLF CLUB', 4)
- /
- insert into inventory_table values
- (2741, 'SOCCER BALL', 2)
- /
-