home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 37.ddi / demo / load_inv.sql < prev    next >
Encoding:
Text File  |  1991-03-04  |  386 b   |  18 lines

  1. rem
  2. rem $Header: load_inv.sql,v 6.1 90/02/16 18:40:23 nsalah Exp $ load_inv.sql Copyr (c) 1989 Oracle
  3. rem
  4. delete from inventory_table
  5. /
  6. alter table inventory_table
  7.   modify (product   char(15))
  8. /
  9. insert into inventory_table values
  10.     (1234, 'TENNIS RACQUET', 3)
  11. /
  12. insert into inventory_table values
  13.     (8159, 'GOLF CLUB', 4)
  14. /
  15. insert into inventory_table values
  16.     (2741, 'SOCCER BALL', 2)
  17. /
  18.