home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 42.ddi / CCREDIT.SQL < prev    next >
Encoding:
Text File  |  1990-05-15  |  817 b   |  25 lines

  1. set feedback off
  2. break on custid on custnp skip 1 on name on city on creditlimit
  3. compute sum of total on custnp
  4. column custid format 999999 heading 'CustID'
  5. column name format a15 heading 'Customer'
  6. column city format a12 heading 'City'
  7. column creditlimit format $999,999,999 heading 'Credit Max'
  8. column ordid format 9999 heading 'OrdID'
  9. column orderdate format a10 heading 'Order Date'
  10. column total format $999,999 heading 'Total'
  11. column custnp noprint
  12. set underline =
  13. set pagesize 24
  14. ttitle center 'SUMMIT SPORTING GOODS -- CUSTOMER ORDERS' skip 2
  15. spool temprpt
  16. select customer.custid custnp, customer.custid, name, city, 
  17.   orderdate, ordid, total, creditlimit 
  18. from customer, ord
  19. where customer.custid=ord.custid
  20. order by 1, 5
  21. /
  22. spool off
  23. pause Press RETURN to return to SQL*Menu ...
  24. exit
  25.