home *** CD-ROM | disk | FTP | other *** search
- set feedback off
- break on custid on custnp skip 1 on name on city on creditlimit
- compute sum of total on custnp
- column custid format 999999 heading 'CustID'
- column name format a15 heading 'Customer'
- column city format a12 heading 'City'
- column creditlimit format $999,999,999 heading 'Credit Max'
- column ordid format 9999 heading 'OrdID'
- column orderdate format a10 heading 'Order Date'
- column total format $999,999 heading 'Total'
- column custnp noprint
- set underline =
- set pagesize 24
- ttitle center 'SUMMIT SPORTING GOODS -- CUSTOMER ORDERS' skip 2
- spool temprpt
- select customer.custid custnp, customer.custid, name, city,
- orderdate, ordid, total, creditlimit
- from customer, ord
- where customer.custid=ord.custid
- order by 1, 5
- /
- spool off
- pause Press RETURN to return to SQL*Menu ...
- exit
-