--- insert 

The `insert' clause allows you to add new records, using
   either constant values, values returned as the result 
   of a query, or values from an ASCII file to initialize the fields.

EXAMPLES:

	  sql> insert into dept (number, name, location):
          sql>                  <80, 'Collection', 'Atlanta'>/

	  sql> insert into item:
	  sql>     <1023, '2 penny nails', 0.23>,
	  sql>     <2234, '3" bolts',      0.34>/

	  sql> insert into emp:
	  sql>    from 'emp.file'/

   Where "emp" is the record type, and "emp.file" is an ASCII
   file containing employee records.
