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

  1. set feedback off
  2. break on ordid skip 1 on orderdate on custid on total on shipdate
  3. column ordid format 9999 heading 'Order'
  4. column orderdate heading '  Date'
  5. column shipdate heading 'Ship Date'
  6. column custid format 999999 heading 'CustID'
  7. column total format $999,999.99 heading 'Order Total'
  8. column prodid format 999999 heading 'Product'
  9. column qty format 99999999 heading 'Quantity'
  10. column itemtot format $999,999.99 heading 'Item Total'
  11. set underline =
  12. set pagesize 24
  13. ttitle center 'SUMMIT SPORTING GOODS -- SALES ORDERS' skip 2
  14. spool temprpt
  15. select ord.ordid, orderdate, custid, prodid, qty, itemtot, total, shipdate
  16. from ord, item
  17. where ord.ordid = item.ordid
  18. order by 2, 1, 4
  19. /
  20. spool off
  21. pause Press RETURN to return to SQL*Menu ...
  22. exit
  23.