--- into

`into' is a required keyword for the `insert' clause.

EXAMPLE: 

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


It can also be used at the end of a query to send the output to
   a UNIX file.

If you want to use special characters (dots or slashes) in the file
   name, enclose it in single quotes.

EXAMPLES:

	  sql> select * from dept into departments/

	  sql> select name, salary from emp where dept_no = 10
          sql> into '../emps'/
