home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / q / quasrsql.zip / QUERY16.SQL < prev    next >
Text File  |  1991-10-26  |  191b  |  12 lines

  1. create table temp (
  2.   pno       char(6),
  3.   totqty    integer
  4. );
  5.  
  6. insert into temp (pno, totqty)
  7.   select pno, sum(qty) from sp group by pno;
  8.  
  9. select * from temp;
  10.  
  11. drop table temp;
  12.